We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 199d48a commit e9c838aCopy full SHA for e9c838a
src/config.rs
@@ -61,7 +61,7 @@ impl Config {
61
62
pub fn handle_logs(&self) {
63
if self.default {
64
- info!("Config file not found, using default configuration.");
+ info!("Config file not found, using default configuration");
65
}
66
67
@@ -70,7 +70,11 @@ impl Config {
70
match Self::load_favicon_as_base64(favicon.to_string()) {
71
Ok(favicon_base64) => self.status.favicon = Some(favicon_base64),
72
Err(e) => {
73
- error!("Error loading favicon: {}", e);
+ // Only log favicon errors for custom configs, since default config includes a known favicon
74
+ if !self.default {
75
+ error!("Error loading favicon: {}", e);
76
+ }
77
+
78
self.status.favicon = None;
79
80
0 commit comments