mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
refactor: Improve log message
Co-authored-by: Josh <josh.t.richards@gmail.com> Signed-off-by: Carl Schwan <carl@carlschwan.eu>
This commit is contained in:
parent
ccb1d9afa7
commit
d6f7805ae7
1 changed files with 2 additions and 2 deletions
|
|
@ -819,7 +819,7 @@ class ObjectStoreStorage extends Common implements IChunkedFileWrite {
|
|||
}
|
||||
} catch (S3MultipartUploadException|S3Exception $e) {
|
||||
$this->logger->error(
|
||||
'Could not complete multipart upload ' . $urn . ' with uploadId ' . $writeToken,
|
||||
'Unable to complete multipart upload for "' . $urn . '" (uploadId: "' . $writeToken . '")',
|
||||
[
|
||||
'app' => 'objectstore',
|
||||
'exception' => $e,
|
||||
|
|
@ -829,7 +829,7 @@ class ObjectStoreStorage extends Common implements IChunkedFileWrite {
|
|||
$this->objectStore->abortMultipartUpload($urn, $writeToken);
|
||||
} catch (S3Exception $e) {
|
||||
$this->logger->error(
|
||||
'Failed to abort multi-part upload for ' . $urn . ' with uploadId ' . $writeToken,
|
||||
'Unable to abort multipart upload for "' . $urn . '" (uploadId: "' . $writeToken . '") after completion error',
|
||||
[
|
||||
'app' => 'objectstore',
|
||||
'exception' => $e,
|
||||
|
|
|
|||
Loading…
Reference in a new issue