Merge pull request #5525 from nextcloud/stable12-5517

[stable12] Enhance the logging if the part file can not be renamed
This commit is contained in:
Morris Jobke 2017-07-04 19:36:08 +02:00 committed by GitHub
commit 29fdffb1af
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ class File extends Node implements IFile {
$fileExists = $storage->file_exists($internalPath);
}
if (!$run || $renameOkay === false || $fileExists === false) {
\OCP\Util::writeLog('webdav', 'renaming part file to final file failed', \OCP\Util::ERROR);
\OCP\Util::writeLog('webdav', 'renaming part file to final file failed ($run: ' . ( $run ? 'true' : 'false' ) . ', $renameOkay: ' . ( $renameOkay ? 'true' : 'false' ) . ', $fileExists: ' . ( $fileExists ? 'true' : 'false' ) . ')', \OCP\Util::ERROR);
throw new Exception('Could not rename part file to final file');
}
} catch (ForbiddenException $ex) {