Skip to content
Snippets Groups Projects
Unverified Commit 94c15efa authored by Robin Appelman's avatar Robin Appelman
Browse files

always log locking errors


Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent 25565dd7
No related branches found
No related tags found
No related merge requests found
......@@ -776,9 +776,7 @@ abstract class Common implements Storage, ILockingStorage {
try {
$provider->changeLock('files/' . md5($this->getId() . '::' . trim($path, '/')), $type);
} catch (LockedException $e) {
if ($logger) {
$logger->logException($e);
}
\OC::$server->getLogger()->logException($e);
throw $e;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment