Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Oct 24, 2020
1 parent 05e1e45 commit b881c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-subscriber/src/fmt/format/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ where
let mut v = PrettyVisitor::new(writer, true).with_style(style);
event.record(&mut v);
v.finish()?;
writeln!(writer, "")?;
writer.write_char('\n')?;

let dimmed = Style::new().dimmed().italic();
let thread = self.display_thread_name || self.display_thread_id;
Expand Down

0 comments on commit b881c75

Please sign in to comment.