Просмотр исходного кода

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

James Read 2 лет назад
Родитель
Сommit
311f9a1d00
2 измененных файлов с 5 добавлено и 5 удалено
  1. 4 4
      internal/acl/acl.go
  2. 1 1
      internal/grpcapi/grpcApi.go

+ 4 - 4
internal/acl/acl.go

@@ -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
 }

+ 1 - 1
internal/grpcapi/grpcApi.go

@@ -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
 }