diff options
author | Blaž Hrastnik | 2021-02-15 12:16:25 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-16 09:18:35 +0000 |
commit | 48ef6598db8c4f0c93feb1acc4548d013e2e6158 (patch) | |
tree | 17443af119072089b720c4cc73f40b4e3ed62b60 /helix-term/src | |
parent | d8bc19f71519538f712c65810f1657d3f00495f8 (diff) |
Increase the log level in LSP and log server errors.
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/application.rs | 4 |
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, |