We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c325b01 commit 8b311a9Copy full SHA for 8b311a9
1 file changed
src/howl.rs
@@ -300,16 +300,14 @@ pub fn howl(
300
debug!("Current time: {now:?}");
301
debug!("Target time: {target_time:?}");
302
303
- // debug!("Sleep time: {}", sleep_time);
304
-
305
if target_time > now {
306
let sleep_time = target_time - now;
307
thread::sleep(sleep_time);
308
} else {
309
let behind = now - target_time;
310
warn!(
311
- "saluki howl running {} seconds behind schedule",
312
- behind.as_secs()
+ "saluki howl running {} ms behind schedule",
+ behind.as_millis()
313
)
314
}
315
0 commit comments