diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-27 07:48:40 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-27 07:48:40 -0800 |
commit | ab9ddda8f2a969d5c4d8c831de34d60d4ade5648 (patch) | |
tree | 68ef4ac614494c5b0fae07ff2d58e00e10cbafc0 /apps/files | |
parent | 25305a535b37dfb8a64ef9565e303c87e5d46ca0 (diff) | |
parent | 11ef12a1060f3e34312ae40c690f95765d7c5f89 (diff) | |
download | nextcloud-server-ab9ddda8f2a969d5c4d8c831de34d60d4ade5648.tar.gz nextcloud-server-ab9ddda8f2a969d5c4d8c831de34d60d4ade5648.zip |
Merge pull request #6907 from owncloud/webdav-logexceptions
Added exception logger plugin for sabre connector
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/appinfo/remote.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 9f290796205..ef22fe92188 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -52,6 +52,7 @@ $server->addPlugin(new OC_Connector_Sabre_FilesPlugin()); $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin()); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); +$server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav')); // And off we go! $server->exec(); |