mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Use Display formatting for file creation errors
This commit is contained in:
parent
7e752cf58e
commit
49e9104185
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ impl OnDemandLogFile {
|
|||
let _ = writeln!(io::stdout(), "Created log file at {:?}", self.path);
|
||||
}
|
||||
Err(e) => {
|
||||
let _ = writeln!(io::stdout(), "Unable to create log file: {:?}", e);
|
||||
let _ = writeln!(io::stdout(), "Unable to create log file: {}", e);
|
||||
return Err(e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue