Skip to content

Commit

Permalink
FISH-7426 decrease level of timing-related logging in payara config
Browse files Browse the repository at this point in the history
  • Loading branch information
aubi committed Jun 1, 2023
1 parent d8ff30f commit 476c8b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public long getCacheDurationSeconds() {
configuredCacheDurationSeconds = defaultCacheDurationMilliSeconds;
}
configuredCacheDurationSecondsExpires = currentTimeMillis + configuredCacheDurationSeconds;
Logger.getLogger(PayaraConfig.class.getName()).log(Level.SEVERE, "getCacheDurationSeconds took about {0} ms", currentTimeMillis() - currentTimeMillis);
Logger.getLogger(PayaraConfig.class.getName()).log(Level.FINER, "getCacheDurationSeconds took about {0} ms", currentTimeMillis() - currentTimeMillis);
return configuredCacheDurationSeconds;
}
}
Expand Down

0 comments on commit 476c8b5

Please sign in to comment.