Skip to content
Snippets Groups Projects
Commit 72c1c89b authored by Vincent Petry's avatar Vincent Petry
Browse files

Log forbidden in debug level

parent cc2092a5
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,9 @@ class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin { ...@@ -24,6 +24,9 @@ class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
// exactly the same time from two clients, only one client // exactly the same time from two clients, only one client
// wins, the second one gets "Precondition failed" // wins, the second one gets "Precondition failed"
'Sabre\DAV\Exception\PreconditionFailed' => true, 'Sabre\DAV\Exception\PreconditionFailed' => true,
// forbidden can be expected when trying to upload to
// read-only folders for example
'Sabre\DAV\Exception\Forbidden' => true,
); );
/** @var string */ /** @var string */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment