aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/application.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index dd7778dd..79a916a5 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -5,7 +5,7 @@ use helix_view::{document::Mode, Document, Editor, Theme, View};
use crate::compositor::Compositor;
use crate::ui;
-use log::{debug, info};
+use log::{error, info};
use std::{
io::{self, stdout, Stdout, Write},
@@ -171,7 +171,7 @@ impl Application {
}
}
Some(Call::MethodCall(call)) => {
- debug!("Method not found {}", call.method);
+ error!("Method not found {}", call.method);
// self.language_server.reply(
// call.id,