userauth failure log as debug and not error -- if it leads to error it will be raised as an exception anyway

This commit is contained in:
Shikhar Bhushan
2010-07-20 23:43:48 +01:00
parent 7874e7dbfd
commit 8b21eff1d2

View File

@@ -224,7 +224,7 @@ public class UserAuthImpl
} }
private void saveException(UserAuthException e) { private void saveException(UserAuthException e) {
log.error("Saving for later - {}", e.toString()); log.debug("Saving for later - {}", e.toString());
savedEx.push(e); savedEx.push(e);
} }