Skip to content

Commit 1496a6c

Browse files
authored
Change log level info->debug for ScriptInitializer (#7271)
1 parent 1515aba commit 1496a6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dd-java-agent/agent-crashtracking/src/main/java/com/datadog/crashtracking/ScriptInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private static void initializeOOMENotifier(HotSpotDiagnosticMXBean diagBean) {
204204
// @VisibleForTests
205205
static void initializeOOMENotifier(String onOutOfMemoryVal) throws IOException {
206206
if (onOutOfMemoryVal == null || onOutOfMemoryVal.isEmpty()) {
207-
log.info("'-XX:OnOutOfMemoryError' argument was not provided. OOME tracking is disabled.");
207+
log.debug("'-XX:OnOutOfMemoryError' argument was not provided. OOME tracking is disabled.");
208208
return;
209209
}
210210
Matcher m = oomeNotifierScriptPattern.matcher(onOutOfMemoryVal);

0 commit comments

Comments
 (0)