diff options
Diffstat (limited to 'alacritty/src/main.rs')
-rw-r--r-- | alacritty/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/main.rs b/alacritty/src/main.rs index 65e13a62..d3419f78 100644 --- a/alacritty/src/main.rs +++ b/alacritty/src/main.rs @@ -111,7 +111,7 @@ fn main() { // Clean up logfile if let Some(log_file) = log_file { if !persistent_logging && fs::remove_file(&log_file).is_ok() { - let _ = writeln!(io::stdout(), "Deleted log file at {:?}", log_file); + let _ = writeln!(io::stdout(), "Deleted log file at \"{}\"", log_file.display()); } } } @@ -123,7 +123,7 @@ fn main() { fn run(window_event_loop: GlutinEventLoop<Event>, config: Config) -> Result<(), Box<dyn Error>> { info!("Welcome to Alacritty"); if let Some(config_path) = &config.config_path { - info!("Configuration loaded from {:?}", config_path.display()); + info!("Configuration loaded from \"{}\"", config_path.display()); }; // Set environment variables |