Skip to content

Commit

Permalink
change error message that's more of a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie committed Dec 6, 2023
1 parent fd64097 commit 9ab66ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion services/status/src/preferences.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ impl PrefHandler for DevicePrefs {
true
}
_ => {
log::error!("Got unknown message: {}", op);
// this is "expected" - options that don't match here are matched down below.
log::info!("Got unknown message: {}, passing to next handler.", op);
false
}
} {
Expand Down

0 comments on commit 9ab66ee

Please sign in to comment.