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

Commit

Permalink
dim the whole second line
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Sep 8, 2020
1 parent 93dd3cf commit 1e315a7
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,7 @@ impl Log for Logger {
if let Some(line) = record.line() {
loc.push_str(&format!(":{}", line));
}
writeln!(
sink,
"└─ {} {} {}",
mod_path.dimmed(),
"@".dimmed(),
loc.dimmed()
)
.ok();
writeln!(sink, "{}", format!("└─ {} @ {}", mod_path, loc).dimmed()).ok();
}
}
}
Expand Down

0 comments on commit 1e315a7

Please # to comment.