Skip to content

Commit c57ab60

Browse files
committed
daemon: improve cron failure error message
1 parent 1d62d1f commit c57ab60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/daemon.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ where
238238
.spawn(move || loop {
239239
thread::sleep(interval);
240240
if let Err(err) = exec() {
241-
error!("failed to run cron '{}': {:?}", name, err);
241+
error!("failed to run scheduled task '{}': {:?}", name, err);
242242
}
243243
})?;
244244
Ok(())

0 commit comments

Comments
 (0)