Skip to content

Commit

Permalink
refactor(core): switch logging of utils method to trace
Browse files Browse the repository at this point in the history
- Do not log all additional UES during the synchronization
  in DEBUG, switch it to TRACE. We should have other means
  for tracking running synchronization.
  • Loading branch information
zlamalp committed Nov 2, 2023
1 parent 343603b commit 53a5f9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public static List<RichUserExtSource> extractAdditionalUserExtSources(PerunSessi

// Entry contains extSourceName|extSourceType|extLogin;uesAttribute=value1,value2[|LoA]
String[] userExtSourceRaw = subjectFromExtSource.get(attrName).split("\\|");
log.debug("Processing additionalUserExtSource {}", subjectFromExtSource.get(attrName));
log.trace("Processing additionalUserExtSource {}", subjectFromExtSource.get(attrName));

// Check if the array has at least 3 parts, this is protection against outOfBoundException
if(userExtSourceRaw.length < 3) {
Expand Down

0 comments on commit 53a5f9b

Please sign in to comment.