Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Resolved
-
None
-
None
-
None
Description
It would be nice to improve the logging in the ExternalLoginModule.java class
In particular IMHO it would be better to increase the log level in this snippet
} catch (LoginException e) { log.debug("IDP {} throws login exception for '{}': {}", idp.getName(), logId, e.getMessage()); throw e; } catch (Exception e) { log.debug("SyncHandler {} throws sync exception for '{}'", syncHandler.getName(), logId, e); LoginException le = new LoginException("Error while syncing user."); le.initCause(e); throw le; }
Attachments
Issue Links
- is fixed by
-
OAK-8102 LoginModule error metrics
- Closed