Skip to content
Snippets Groups Projects
Commit 587e3bf8 authored by Martin Lowe's avatar Martin Lowe :flag_ca:
Browse files

Fix error log that should be debug in CachedUserService

parent a009cd4b
No related branches found
No related tags found
1 merge request!86Iss #69 - Fixed issue where validation messages could be lost
......@@ -122,7 +122,7 @@ public class CachedUserService implements UserService {
* @return the user account if found by mail, or null if none found.
*/
private EclipseUser retrieveUser(String mail) {
LOGGER.error("Getting fresh user for {}", mail);
LOGGER.debug("Getting fresh user for {}", mail);
// check for noreply (no reply will never have user account, and fails fast)
EclipseUser eclipseUser = checkForNoReplyUser(mail);
if (eclipseUser != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment