From 9565421c156f9f5537112624f17ee82512e72333 Mon Sep 17 00:00:00 2001 From: Thomas Casteleyn Date: Thu, 7 Nov 2024 18:00:44 +0100 Subject: [PATCH] chore(processors.regex): Change logging severity to debug (#16151) --- plugins/processors/regex/converter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/processors/regex/converter.go b/plugins/processors/regex/converter.go index 6e2baef69..f36ffa425 100644 --- a/plugins/processors/regex/converter.go +++ b/plugins/processors/regex/converter.go @@ -78,7 +78,7 @@ func (c *converter) setup(ct converterType, log telegraf.Logger) error { } } if allNamed { - log.Infof("%s: Using named-group mode...", ct) + log.Debugf("%s: Using named-group mode...", ct) c.groups = groups[1:] } else { msg := "Neither 'result_key' nor 'replacement' given with unnamed or mixed groups;" @@ -86,7 +86,7 @@ func (c *converter) setup(ct converterType, log telegraf.Logger) error { log.Warnf("%s: %s", ct, msg) } } else { - log.Infof("%s: Using explicit mode...", ct) + log.Debugf("%s: Using explicit mode...", ct) } case convertTagRename, convertFieldRename: switch c.ResultKey {