Remove unnecessary Printf

This commit is contained in:
Andrew Ayer 2025-01-11 11:35:31 -05:00
parent 8472e14d4c
commit 3a609ea037
1 changed files with 1 additions and 1 deletions

View File

@ -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 {