diff options
Diffstat (limited to 'alacritty/src/logging.rs')
-rw-r--r-- | alacritty/src/logging.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alacritty/src/logging.rs b/alacritty/src/logging.rs index ea44637b..9d837a78 100644 --- a/alacritty/src/logging.rs +++ b/alacritty/src/logging.rs @@ -172,7 +172,8 @@ impl OnDemandLogFile { Ok(file) => { self.file = Some(io::LineWriter::new(file)); self.created.store(true, Ordering::Relaxed); - let _ = writeln!(io::stdout(), "Created log file at \"{}\"", self.path.display()); + let _ = + writeln!(io::stdout(), "Created log file at \"{}\"", self.path.display()); }, Err(e) => { let _ = writeln!(io::stdout(), "Unable to create log file: {}", e); |