mirror of
https://github.com/nextcloud/server.git
synced 2026-03-22 02:21:12 -04:00
Merge pull request #3020 from owncloud/cleaner-webdav-reason
Cleaner isWebDAVWorking reason, otherwise people overlook the reason
This commit is contained in:
commit
0701d0019b
1 changed files with 1 additions and 1 deletions
|
|
@ -595,7 +595,7 @@ class OC_Util {
|
|||
} catch(\Sabre_DAV_Exception_NotAuthenticated $e) {
|
||||
$return = true;
|
||||
} catch(\Exception $e) {
|
||||
OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e, OC_Log::WARN);
|
||||
OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e->getMessage(). ' ('.get_class($e).')', OC_Log::WARN);
|
||||
$return = false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue