Skip to content

Commit

Permalink
fix: make keymap failure warn level
Browse files Browse the repository at this point in the history
  • Loading branch information
panekj committed Apr 5, 2024
1 parent f64ed5b commit cb968ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lapce-app/src/keypress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ impl KeyPressData {
if let Some(path) = Self::file() {
if let Ok(content) = std::fs::read_to_string(&path) {
if let Err(err) = loader.load_from_str(&content, is_modal) {
tracing::error!("Failed to load from {path:?}: {err}");
tracing::warn!("Failed to load from {path:?}: {err}");
}
}
}
Expand Down

0 comments on commit cb968ab

Please sign in to comment.