Skip to content

Commit

Permalink
lowered notification level of a stupid error
Browse files Browse the repository at this point in the history
When the terminal theme cannot be detected an error message was sent, but it is expected to fail on windows, so I lowered the level to Debug
  • Loading branch information
Etto48 committed Sep 5, 2024
1 parent 9ddd10d commit 49ce31a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ impl App {
Ok(theme) => theme,
Err(e) => {
logger.log(
NotificationLevel::Error,
&format!("Error detecting terminal theme: {e}"),
NotificationLevel::Debug,
&format!("Could not detect terminal theme: {e}"),
);
Theme::Dark
}
Expand Down

0 comments on commit 49ce31a

Please sign in to comment.