We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3495e5 commit 74c544eCopy full SHA for 74c544e
src/supported_terminals.rs
@@ -4,7 +4,7 @@ use std::{
4
};
5
6
use gtk::glib;
7
-use tracing::{error, info};
+use tracing::{error, info, warn};
8
9
use crate::fakers::{CommandRunner, Command, FdMode};
10
@@ -96,7 +96,7 @@ impl TerminalRepository {
96
if let Ok(loaded_list) = Self::load_terminals_from_json(&this.imp().custom_list_path) {
97
list.extend(loaded_list);
98
} else {
99
- error!(
+ warn!(
100
"Failed to load custom terminals from JSON file {:?}",
101
&this.imp().custom_list_path
102
);
0 commit comments