Skip to content
This repository has been archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
fix(oauth): log user mapping error in warning
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGeraud committed Dec 4, 2019
1 parent 7d70ea8 commit 0fdb54e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private HashMap<String, String> getUserProfileAttrs(Map<String, String> userProf
map.put(field, userInfoPath.read(mapping));
}
} catch (Exception e) {
LOGGER.error("Using mapping: \"{}\", no fields are located in {}", mapping, userInfo);
LOGGER.warn("Using mapping: \"{}\", no fields are located in {}", mapping, userInfo);
}
}
}
Expand Down

0 comments on commit 0fdb54e

Please sign in to comment.