From ac04718aec3c9711da870b3db39db58f89578ab9 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 2 Jun 2022 14:28:13 +0200 Subject: [PATCH] fix: use proper logger info function instead if print --- plugin/impl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/impl.go b/plugin/impl.go index 79ca296..fe2bb6b 100644 --- a/plugin/impl.go +++ b/plugin/impl.go @@ -83,7 +83,7 @@ func (p *Plugin) Execute() error { } if p.settings.SkipMissing && !p.settings.IsFile { - logrus.Printf("comment skipped: 'message' is not a valid path or file does not exist while 'skip-missing' is enabled") + logrus.Infof("comment skipped: 'message' is not a valid path or file does not exist while 'skip-missing' is enabled") return nil }