Add a space after colon in log message

This commit is contained in:
Andrew Ayer 2025-05-07 18:01:19 -04:00
parent 62649aae08
commit 61b6c3bf2a
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ func (s *FilesystemState) NotifyError(ctx context.Context, ctlog *loglist.Log, e
if ctlog == nil {
log.Print(err)
} else {
log.Print(ctlog.GetMonitoringURL(), ":", err)
log.Print(ctlog.GetMonitoringURL(), ": ", err)
}
return nil
}