feature: Reduce debug log spam in ACL/getDashboardComponents (#176)

This commit is contained in:
James Read 2023-10-24 05:43:38 +01:00 committed by GitHub
parent 50204f8180
commit 311f9a1d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ func IsAllowedExec(cfg *config.Config, user *AuthenticatedUser, action *config.A
"User": user.Username,
"Action": action.Title,
"ACL": acl.Name,
}).Debug("isAllowedExec - Matched ACL")
}).Trace("isAllowedExec - Matched ACL")
return true
}
@ -34,7 +34,7 @@ func IsAllowedExec(cfg *config.Config, user *AuthenticatedUser, action *config.A
log.WithFields(log.Fields{
"User": user.Username,
"Action": action.Title,
}).Debug("isAllowedExec - No ACLs matched")
}).Trace("isAllowedExec - No ACLs matched")
return cfg.DefaultPermissions.Exec
}
@ -47,7 +47,7 @@ func IsAllowedView(cfg *config.Config, user *AuthenticatedUser, action *config.A
"User": user.Username,
"Action": action.Title,
"ACL": acl.Name,
}).Debug("isAllowedView - Matched ACL")
}).Trace("isAllowedView - Matched ACL")
return true
}
@ -56,7 +56,7 @@ func IsAllowedView(cfg *config.Config, user *AuthenticatedUser, action *config.A
log.WithFields(log.Fields{
"User": user.Username,
"Action": action.Title,
}).Debug("isAllowedView - No ACLs matched")
}).Trace("isAllowedView - No ACLs matched")
return cfg.DefaultPermissions.View
}

View File

@ -115,7 +115,7 @@ func (api *oliveTinAPI) GetDashboardComponents(ctx ctx.Context, req *pb.GetDashb
log.Warn("Zero actions found - check that you have some actions defined, with a view permission")
}
log.Debugf("GetDashboardComponents: %v", res)
log.Tracef("GetDashboardComponents: %v", res)
return res, nil
}