mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-02-03 13:19:10 +01:00
Decrease log level of DefaultAdministrationContext from info to debug
This commit is contained in:
2
gradle/changelog/decrease_logging.yaml
Normal file
2
gradle/changelog/decrease_logging.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
- type: Changed
|
||||
description: Decrease log level of DefaultAdministrationContext from info to debug
|
||||
@@ -174,7 +174,7 @@ public class DefaultAdministrationContext implements AdministrationContext
|
||||
state.bind();
|
||||
try
|
||||
{
|
||||
logger.info("execute action {} in administration context", action.getClass().getName());
|
||||
logger.debug("execute action {} in administration context", action.getClass().getName());
|
||||
|
||||
action.run();
|
||||
} finally {
|
||||
@@ -211,8 +211,7 @@ public class DefaultAdministrationContext implements AdministrationContext
|
||||
username = SCMContext.USER_ANONYMOUS;
|
||||
}
|
||||
|
||||
logger.info("user {} executes {} as admin", username,
|
||||
action.getClass().getName());
|
||||
logger.debug("user {} executes {} as admin", username, action.getClass().getName());
|
||||
}
|
||||
|
||||
Subject adminSubject = createAdminSubject();
|
||||
|
||||
Reference in New Issue
Block a user