diff options
author | Aleksey Kladov <[email protected]> | 2018-12-30 21:38:50 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-12-30 21:38:50 +0000 |
commit | 0a8d085619674cd113b6dd903d22233a07fe4839 (patch) | |
tree | ed180196ff6cfc2cfa7dd71f0728decbccbd11b2 /crates/ra_lsp_server | |
parent | dee7c3b0de9650216bd761e587d0e1d4cca52981 (diff) |
remove backtraces from Cancelled
Hopefully we won't need them for debugging. If we do need them, it
should be easy to add back.
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs index 3ebae4ecd..d425b6733 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -432,7 +432,7 @@ impl<'a> PoolDispatcher<'a> { | |||
432 | RawResponse::err( | 432 | RawResponse::err( |
433 | id, | 433 | id, |
434 | ErrorCode::ContentModified as i32, | 434 | ErrorCode::ContentModified as i32, |
435 | format!("content modified: {:?}", e), | 435 | "content modified".to_string(), |
436 | ) | 436 | ) |
437 | } else { | 437 | } else { |
438 | RawResponse::err( | 438 | RawResponse::err( |