Skip to content

Commit

Permalink
demote lsp format error log level
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Dec 22, 2023
1 parent 96684eb commit c601165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ mod server {
}
Err(e) => {
self.client
.log_message(MessageType::INFO, format!("Formatting error: {}", e))
.log_message(MessageType::LOG, format!("Formatting error: {}", e))
.await;
let mut error = Error::parse_error();
error.message = e.to_string().into();
Expand Down

0 comments on commit c601165

Please sign in to comment.