From 3a609ea037ad7ced5344dd9e3a26a17c1214a698 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Sat, 11 Jan 2025 11:35:31 -0500 Subject: [PATCH] Remove unnecessary Printf --- monitor/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/errors.go b/monitor/errors.go index c62b874..c772121 100644 --- a/monitor/errors.go +++ b/monitor/errors.go @@ -18,7 +18,7 @@ import ( func recordError(ctx context.Context, config *Config, ctlog *loglist.Log, errToRecord error) { if err := config.State.NotifyError(ctx, ctlog, errToRecord); err != nil { - log.Printf("unable to notify about error: ", err) + log.Print("unable to notify about error: ", err) if ctlog == nil { log.Print(errToRecord) } else {