summaryrefslogtreecommitdiff
path: root/recording
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-09-12 03:10:47 +0800
committerKeuin <[email protected]>2022-09-12 03:12:10 +0800
commitdc044914ac17040c8d7c2398d1a0a80b915891b0 (patch)
tree372ac5e0f824230831c5c9328a8e8ce2b77a6dc1 /recording
parent32fbadfff7205f94a5089ec8ff2fc1cef30d325d (diff)
Proper use of loggers.
Diffstat (limited to 'recording')
-rw-r--r--recording/runner.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/recording/runner.go b/recording/runner.go
index fddb562..c44a06c 100644
--- a/recording/runner.go
+++ b/recording/runner.go
@@ -122,7 +122,7 @@ func tryRunTask(t *RunningTask) error {
}
if err2 != nil {
// some other unrecoverable error
- t.logger.Error("Cannot recover from error: %v")
+ t.logger.Error("Cannot recover from error: %v", err2)
return err2
}
}
@@ -297,10 +297,10 @@ func watcherRecoverableLoop(
chWatcherDown <- struct{}{}
return
case ErrTransport:
- task.logger.Error("ERROR: Watcher stopped due to an I/O error: %v", err)
+ task.logger.Error("Watcher stopped due to an I/O error: %v", err)
waitSeconds := task.Transport.RetryIntervalSeconds
task.logger.Warning(
- "WARNING: Sleep for %v second(s) before restarting watcher.\n",
+ "Sleep for %v second(s) before restarting watcher.\n",
waitSeconds,
)
time.Sleep(time.Duration(waitSeconds) * time.Second)