Skip to content

Commit

Permalink
fix: missed one log::warn
Browse files Browse the repository at this point in the history
  • Loading branch information
joshka committed Jun 21, 2024
1 parent 95df821 commit d09a206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sources/signals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ impl EventSource for Signals {
Ok(Some(info)) => callback(Event { info }, &mut ()),
Ok(None) => break,
Err(e) => {
log::warn!("Error reading from signalfd: {e}");
warn!("Error reading from signalfd: {e}");
return Err(e.into());
}
}
Expand Down

0 comments on commit d09a206

Please sign in to comment.