mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 17:56:17 +01:00
added missing logging parameter
This commit is contained in:
@@ -300,7 +300,8 @@ public class BasicSecurityContext implements WebSecurityContext
|
|||||||
{
|
{
|
||||||
if (logger.isDebugEnabled())
|
if (logger.isDebugEnabled())
|
||||||
{
|
{
|
||||||
logger.debug("user {} is marked as deactivated by local database");
|
logger.debug("user {} is marked as deactivated by local database",
|
||||||
|
user.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
user.setActive(false);
|
user.setActive(false);
|
||||||
@@ -326,8 +327,7 @@ public class BasicSecurityContext implements WebSecurityContext
|
|||||||
{
|
{
|
||||||
if (logger.isDebugEnabled())
|
if (logger.isDebugEnabled())
|
||||||
{
|
{
|
||||||
logger.debug(
|
logger.debug("user {} of type {} is marked as admin by local database",
|
||||||
"user {} of type {} is marked as admin by local database",
|
|
||||||
user.getName(), user.getType());
|
user.getName(), user.getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -362,8 +362,8 @@ public class BasicSecurityContext implements WebSecurityContext
|
|||||||
}
|
}
|
||||||
else if (logger.isDebugEnabled())
|
else if (logger.isDebugEnabled())
|
||||||
{
|
{
|
||||||
logger.debug("authenticator {} marked user {} as admin",
|
logger.debug("authenticator {} marked user {} as admin", user.getType(),
|
||||||
user.getType(), user.getName());
|
user.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user