Do not log locked files

This is the code doing its job. There is no need to spam the log file
with this.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2019-07-26 14:29:13 +02:00 committed by Backportbot
parent 159ff6dd97
commit 167a8d72cf
1 changed files with 8 additions and 1 deletions

View File

@ -55,6 +55,7 @@ use OCP\Files\NotFoundException;
use OCP\Files\NotPermittedException;
use OCP\Files\Storage;
use OCP\Files\StorageNotAvailableException;
use OCP\ILogger;
use OCP\Lock\ILockingProvider;
use OCP\Lock\LockedException;
use OCP\Share\IManager;
@ -229,7 +230,13 @@ class File extends Node implements IFile {
}
} catch (\Exception $e) {
\OC::$server->getLogger()->logException($e);
$context = [];
if ($e instanceof LockedException) {
$context['level'] = ILogger::DEBUG;
}
\OC::$server->getLogger()->logException($e, $context);
if ($needsPartFile) {
$partStorage->unlink($internalPartPath);
}