Fix logfile overwriting existing files

This commit is contained in:
Christian Duerr 2022-01-22 23:48:44 +01:00 committed by GitHub
parent 4e91e99de3
commit 9f6b49ca8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -57,6 +57,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Vi cursor on topmost of the display moving downward when scrolled into history with active output
- Input lag on Wayland with Nvidia binary driver
- Crash when hovering the mouse over fullwidth characters
- Do not create logfile if the file already exists
### Removed

View File

@ -184,7 +184,7 @@ impl OnDemandLogFile {
// Create the file if it doesn't exist yet.
if self.file.is_none() {
let file = OpenOptions::new().append(true).create(true).open(&self.path);
let file = OpenOptions::new().append(true).create_new(true).open(&self.path);
match file {
Ok(file) => {