Remove unnecessary logging statements.

This commit is contained in:
Ben Alex 2004-04-11 12:04:25 +00:00
parent bd35a47233
commit 7387c7f231
1 changed files with 0 additions and 11 deletions

View File

@ -78,17 +78,6 @@ public class JbossIntegrationFilter extends AbstractIntegrationFilter {
while (principals.hasNext()) {
Principal p = (Principal) principals.next();
if (p == null) {
if (super.logger.isDebugEnabled()) {
super.logger.debug("Found null Principal in container");
}
} else {
if (super.logger.isDebugEnabled()) {
super.logger.debug("Found Principal in container ("
+ p.getClass().getName() + ") : " + p.getName());
}
}
if (p instanceof Authentication) {
return p;
}