From cbbefc94a2955a7121d66cc48279e17a729fc257 Mon Sep 17 00:00:00 2001 From: Kenneth Endfinger Date: Fri, 24 Dec 2021 19:41:09 -0500 Subject: [PATCH] Heimdall: Log event count at debug log level. --- .../kubelet/foundation/heimdall/buffer/BufferFlushThread.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundation-heimdall/src/main/kotlin/cloud/kubelet/foundation/heimdall/buffer/BufferFlushThread.kt b/foundation-heimdall/src/main/kotlin/cloud/kubelet/foundation/heimdall/buffer/BufferFlushThread.kt index 29fcf34..1c3eb26 100644 --- a/foundation-heimdall/src/main/kotlin/cloud/kubelet/foundation/heimdall/buffer/BufferFlushThread.kt +++ b/foundation-heimdall/src/main/kotlin/cloud/kubelet/foundation/heimdall/buffer/BufferFlushThread.kt @@ -34,7 +34,7 @@ class BufferFlushThread(val plugin: FoundationHeimdallPlugin, val buffer: EventB transaction(plugin.db) { val count = buffer.flush(this) if (count > 0) { - plugin.slF4JLogger.info("Flushed $count Events") + plugin.slF4JLogger.debug("Flushed $count Events") } } } catch (e: Exception) {