mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 06:37:56 -04:00
log inner exception during dav write
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
07ffe4a34a
commit
08865046fb
1 changed files with 1 additions and 1 deletions
|
|
@ -295,7 +295,7 @@ class File extends Node implements IFile {
|
|||
}
|
||||
|
||||
} catch (StorageNotAvailableException $e) {
|
||||
throw new ServiceUnavailable("Failed to check file size: " . $e->getMessage());
|
||||
throw new ServiceUnavailable("Failed to check file size: " . $e->getMessage(), 0, $e);
|
||||
}
|
||||
|
||||
return '"' . $this->info->getEtag() . '"';
|
||||
|
|
|
|||
Loading…
Reference in a new issue