diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-11-28 19:49:33 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-01-30 15:25:07 +0100 |
commit | ab01402599002bf1cd70e64d53669c53d7b18bc6 (patch) | |
tree | 9f521783c39c242de4f7e675a519858a18236120 /lib/private/Share20 | |
parent | a94358062daaad3aba8289fedf17e6277e47fb3d (diff) | |
download | nextcloud-server-ab01402599002bf1cd70e64d53669c53d7b18bc6.tar.gz nextcloud-server-ab01402599002bf1cd70e64d53669c53d7b18bc6.zip |
log full exception
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib/private/Share20')
-rw-r--r-- | lib/private/Share20/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index ef926ce9883..beafc888c49 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -780,7 +780,7 @@ class Manager implements IManager { return false; } } catch (\Exception $e) { - $this->logger->error('Share notification mail could not be send: ' . $e->getMessage()); + $this->logger->logException($e, ['message' => 'Share notification mail could not be send']); return false; } |