Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Update trace format
Browse files Browse the repository at this point in the history
  • Loading branch information
jovfer committed May 26, 2017
1 parent 0f3adc0 commit d9f35ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl log::Log for SimpleLogger {
}
fn log(&self, record: &LogRecord) {
if self.enabled(record.metadata()) {
println!("{:>5}|{:<27}|{:>30}:{:<4}| {}", record.level(), record.target(), record.location().file(), record.location().line(), record.args());
println!("{:>5}|{:<30}|{:>35}:{:<4}| {}", record.level(), record.target(), record.location().file(), record.location().line(), record.args());
}
}
}
Expand Down

0 comments on commit d9f35ca

Please sign in to comment.