Skip to content

Commit

Permalink
Change log level info->debug for ScriptInitializer (#7271)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik committed Jul 3, 2024
1 parent 1515aba commit 1496a6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private static void initializeOOMENotifier(HotSpotDiagnosticMXBean diagBean) {
// @VisibleForTests
static void initializeOOMENotifier(String onOutOfMemoryVal) throws IOException {
if (onOutOfMemoryVal == null || onOutOfMemoryVal.isEmpty()) {
log.info("'-XX:OnOutOfMemoryError' argument was not provided. OOME tracking is disabled.");
log.debug("'-XX:OnOutOfMemoryError' argument was not provided. OOME tracking is disabled.");
return;
}
Matcher m = oomeNotifierScriptPattern.matcher(onOutOfMemoryVal);
Expand Down

0 comments on commit 1496a6c

Please sign in to comment.