Skip to content

Commit 74c544e

Browse files
committed
warn instead of error for terminal repo
1 parent d3495e5 commit 74c544e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/supported_terminals.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::{
44
};
55

66
use gtk::glib;
7-
use tracing::{error, info};
7+
use tracing::{error, info, warn};
88

99
use crate::fakers::{CommandRunner, Command, FdMode};
1010

@@ -96,7 +96,7 @@ impl TerminalRepository {
9696
if let Ok(loaded_list) = Self::load_terminals_from_json(&this.imp().custom_list_path) {
9797
list.extend(loaded_list);
9898
} else {
99-
error!(
99+
warn!(
100100
"Failed to load custom terminals from JSON file {:?}",
101101
&this.imp().custom_list_path
102102
);

0 commit comments

Comments
 (0)