Skip to content

Commit

Permalink
Fix method signature of ExceptionLoggerPlugin::logException to allow …
Browse files Browse the repository at this point in the history
…Throwable as argument
  • Loading branch information
DeepDiver1975 authored and phil-davis committed Jul 8, 2019
1 parent e19c646 commit 8559248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function initialize(\Sabre\DAV\Server $server) {
* Log exception
*
*/
public function logException(\Exception $ex) {
public function logException(\Throwable $ex) {
if ($ex->getPrevious() instanceof FileContentNotAllowedException) {
//Don't log because its already been logged may be by different
//app or so.
Expand Down

0 comments on commit 8559248

Please sign in to comment.