Explorar el Código

reduce loglevel to debug

bergquist hace 6 años
padre
commit
7754c37a1f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      pkg/services/auth/token_cleanup.go

+ 1 - 1
pkg/services/auth/token_cleanup.go

@@ -52,6 +52,6 @@ func (srv *UserAuthTokenService) deleteExpiredTokens(maxInactiveLifetime, maxLif
 		return 0, nil
 	}
 
-	srv.log.Info("cleanup of expired auth tokens done", "count", affected)
+	srv.log.Debug("cleanup of expired auth tokens done", "count", affected)
 	return affected, err
 }