[
https://issues.apache.org/jira/browse/SHIRO-353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Maciej Ziarko updated SHIRO-353:
--------------------------------
Description:
Invalid SLF4J message (string concatenation with {} inside template) in
DefaultSecurityManager class.
Line 550:
log.debug("Logging out subject with primary principal {}" +
principals.getPrimaryPrincipal());
Should be:
log.debug("Logging out subject with primary principal {}",
principals.getPrimaryPrincipal());
was:
Invalid SLF4J message (string concatenation with {} inside template)
Line 550:
log.debug("Logging out subject with primary principal {}" +
principals.getPrimaryPrincipal());
Should be:
log.debug("Logging out subject with primary principal {}",
principals.getPrimaryPrincipal());
> DefaultSecurityManager has invalid SLF4J log instruction
> --------------------------------------------------------
>
> Key: SHIRO-353
> URL: https://issues.apache.org/jira/browse/SHIRO-353
> Project: Shiro
> Issue Type: Bug
> Affects Versions: 1.2.0
> Reporter: Maciej Ziarko
> Priority: Trivial
> Original Estimate: 2m
> Remaining Estimate: 2m
>
> Invalid SLF4J message (string concatenation with {} inside template) in
> DefaultSecurityManager class.
> Line 550:
> log.debug("Logging out subject with primary principal {}" +
> principals.getPrimaryPrincipal());
> Should be:
> log.debug("Logging out subject with primary principal {}",
> principals.getPrimaryPrincipal());
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira