diff options
author | Julius Härtl <jus@bitgrid.net> | 2021-10-25 13:25:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 13:25:04 +0200 |
commit | 93561247008c0f4eb1340c9a5f48d908a4fcda72 (patch) | |
tree | 6bf7c2a23a0d2e63cc6fe444eff36d7d1dd91463 /apps/files_external | |
parent | 317d97309fa3fcf7fe8cea8d39679d0e41f9313e (diff) | |
parent | 365f5e425fc1c1c877d2b75164d16b292abd1b20 (diff) | |
download | nextcloud-server-93561247008c0f4eb1340c9a5f48d908a4fcda72.tar.gz nextcloud-server-93561247008c0f4eb1340c9a5f48d908a4fcda72.zip |
Merge pull request #29021 from nextcloud/work/smb/additional-logging
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/SMB.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/SMB.php b/apps/files_external/lib/Lib/Storage/SMB.php index c9d078631b8..28a2d6de7cc 100644 --- a/apps/files_external/lib/Lib/Storage/SMB.php +++ b/apps/files_external/lib/Lib/Storage/SMB.php @@ -239,6 +239,7 @@ class SMB extends Common implements INotifyStorage { try { $files = $this->share->dir($path); } catch (ForbiddenException $e) { + $this->logger->critical($e->getMessage(), ['exception' => $e]); throw new NotPermittedException(); } foreach ($files as $file) { |