mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-16 09:48:10 +00:00
make the logs line buffered
This commit is contained in:
parent
8b8eac5bf9
commit
799ec79f18
1 changed files with 8 additions and 9 deletions
|
@ -48,7 +48,7 @@ impl Log for Logger {
|
|||
return;
|
||||
}
|
||||
|
||||
let should_flush = match &self.file {
|
||||
match &self.file {
|
||||
Some(w) => {
|
||||
let _ = writeln!(
|
||||
w.lock(),
|
||||
|
@ -57,22 +57,21 @@ impl Log for Logger {
|
|||
record.module_path().unwrap_or_default(),
|
||||
record.args(),
|
||||
);
|
||||
self.no_buffering
|
||||
|
||||
if self.no_buffering {
|
||||
self.flush();
|
||||
}
|
||||
}
|
||||
None => {
|
||||
eprintln!(
|
||||
"[{} {}] {}",
|
||||
let message = format!(
|
||||
"[{} {}] {}\n",
|
||||
record.level(),
|
||||
record.module_path().unwrap_or_default(),
|
||||
record.args(),
|
||||
);
|
||||
true // flush stderr unconditionally
|
||||
eprint!("{}", message);
|
||||
}
|
||||
};
|
||||
|
||||
if should_flush {
|
||||
self.flush();
|
||||
}
|
||||
}
|
||||
|
||||
fn flush(&self) {
|
||||
|
|
Loading…
Reference in a new issue