Skip to content

Commit

Permalink
Core: Write a log message instead of warning when locking a file fails
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Nov 1, 2024
1 parent c6f083b commit 4c6de45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gui/DocumentRecovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ void DocumentRecoveryHandler::checkForPreviousCrashes(const std::function<void(Q
callableFunc(tmp, dirs, it.fileName());
}
else {
Base::Console().Warning("Failed to lock file %s\n", fn.toUtf8().constData());
Base::Console().Log("Failed to lock file %s\n", fn.toUtf8().constData());
}
}
}
Expand Down

0 comments on commit 4c6de45

Please sign in to comment.