1
Fork 0

Log when buffering a diagnostic.

This is useful in debugging when and where errors are emitted in
logs.
This commit is contained in:
David Wood 2018-09-06 13:07:14 +02:00
parent f004cae536
commit 874e08bdd8
No known key found for this signature in database
GPG key ID: 01760B4F9F53F154
4 changed files with 7 additions and 0 deletions

View file

@ -9,6 +9,7 @@ path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
log = "0.4"
serialize = { path = "../libserialize" }
syntax_pos = { path = "../libsyntax_pos" }
rustc_data_structures = { path = "../librustc_data_structures" }

View file

@ -108,6 +108,9 @@ impl<'a> DiagnosticBuilder<'a> {
diagnostic = ::std::ptr::read(&self.diagnostic);
::std::mem::forget(self);
};
// Logging here is useful to help track down where in logs an error was
// actually emitted.
debug!("buffer: diagnostic={:?}", diagnostic);
buffered_diagnostics.push(diagnostic);
}

View file

@ -23,6 +23,8 @@ extern crate atty;
extern crate termcolor;
#[cfg(unix)]
extern crate libc;
#[macro_use]
extern crate log;
extern crate rustc_data_structures;
extern crate serialize as rustc_serialize;
extern crate syntax_pos;