We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ffbe86 commit 4ec5f6eCopy full SHA for 4ec5f6e
crates/ra_cargo_watch/src/lib.rs
@@ -363,7 +363,7 @@ impl WatchThread {
363
let line = match line {
364
Ok(line) => line,
365
Err(err) => {
366
- log::error!("Couldn't read line from cargo: {:?}", err);
+ log::error!("Couldn't read line from cargo: {}", err);
367
continue;
368
}
369
};
@@ -372,7 +372,11 @@ impl WatchThread {
372
let message = match message {
373
Ok(message) => message,
374
375
- log::error!("Invalid json from cargo check, ignoring ({}): {} ", err, line);
+ log::error!(
376
+ "Invalid json from cargo check, ignoring ({}): {:?} ",
377
+ err,
378
+ line
379
+ );
380
381
382
0 commit comments