From 49ce31a8aab410271940578988029393d8196115 Mon Sep 17 00:00:00 2001 From: Ettore Ricci Date: Thu, 5 Sep 2024 19:13:44 +0200 Subject: [PATCH] lowered notification level of a stupid error 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 --- src/app/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/app.rs b/src/app/app.rs index 12dbf89..57afe32 100644 --- a/src/app/app.rs +++ b/src/app/app.rs @@ -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 }