mirror of
https://github.com/alacritty/alacritty.git
synced 2025-02-10 15:46:10 -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);
|
let _ = writeln!(io::stdout(), "Created log file at {:?}", self.path);
|
||||||
}
|
}
|
||||||
Err(e) => {
|
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);
|
return Err(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue