Use debug log level for developer oriented logs
The information logged here is of limited general interest, while at the same times makes it impractical to simply enable logging and share the resulting logs due to the amount of the output produced. Reduce log level from info to debug for developer oriented information. For example, when building cargo, this reduces the amount of logs generated by `RUSTC_LOG=info cargo build` from 265 MB to 79 MB. Continuation of changes from 81350.
This commit is contained in:
parent
dd4851d503
commit
361dcd5ca7
7 changed files with 16 additions and 10 deletions
|
@ -1405,8 +1405,8 @@ fn update_disambiguator(expn_id: ExpnId) {
|
|||
});
|
||||
|
||||
if modified {
|
||||
info!("Set disambiguator for {:?} (hash {:?})", expn_id, first_hash);
|
||||
info!("expn_data = {:?}", expn_id.expn_data());
|
||||
debug!("Set disambiguator for {:?} (hash {:?})", expn_id, first_hash);
|
||||
debug!("expn_data = {:?}", expn_id.expn_data());
|
||||
|
||||
// Verify that the new disambiguator makes the hash unique
|
||||
#[cfg(debug_assertions)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue