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:
parent
b2341cdfd0
commit
22f9a95814
1 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue