Core: Write a log message instead of warning when locking a file fails

This commit is contained in:
wmayer
2024-11-01 16:10:51 +01:00
parent c6f083b3e7
commit 4c6de459dc

View File

@@ -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());
}
}
}