diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-08-01 18:27:07 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-11-16 15:24:23 +0100 |
commit | b56f2c9ed01332bbeaee73599a0ea166c62d01e8 (patch) | |
tree | 0dee1604c0890f25f87dcdb3d9d1a17f5b95460e /apps/dav | |
parent | d03446a0ae25a88b68df2bc2bf8d0c49e5473ea0 (diff) | |
download | nextcloud-server-b56f2c9ed01332bbeaee73599a0ea166c62d01e8.tar.gz nextcloud-server-b56f2c9ed01332bbeaee73599a0ea166c62d01e8.zip |
basic lockdown logic
Signed-off-by: Robin Appelman <icewind@owncloud.com>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Auth.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Auth.php b/apps/dav/lib/Connector/Sabre/Auth.php index a35eed88073..95222dafec9 100644 --- a/apps/dav/lib/Connector/Sabre/Auth.php +++ b/apps/dav/lib/Connector/Sabre/Auth.php @@ -159,6 +159,7 @@ class Auth extends AbstractBasic { } catch (Exception $e) { $class = get_class($e); $msg = $e->getMessage(); + \OC::$server->getLogger()->logException($e); throw new ServiceUnavailable("$class: $msg"); } } |