diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-05-07 16:43:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-07 16:43:38 +0200 |
commit | 7639f680a25eb01dc00009da9e8c3fc595a7d7c1 (patch) | |
tree | 26cc4734107c7cfe90e1e6f1c9958dc84770e530 /lib/private/Files | |
parent | 7f5567e7583e67d6faac869beb118c179fff0b88 (diff) | |
parent | e3de7ec8672d191ea151878a48c6827c2817733d (diff) | |
download | nextcloud-server-7639f680a25eb01dc00009da9e8c3fc595a7d7c1.tar.gz nextcloud-server-7639f680a25eb01dc00009da9e8c3fc595a7d7c1.zip |
Merge pull request #9397 from nextcloud/log-fileinfo-not-found
Debug log file not found when getting fileinfo
Diffstat (limited to 'lib/private/Files')
-rw-r--r-- | lib/private/Files/View.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index 527ca728229..bfc831af41c 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -1368,6 +1368,7 @@ class View { $data = $this->getCacheEntry($storage, $internalPath, $relativePath); if (!$data instanceof ICacheEntry) { + \OC::$server->getLogger()->debug('No cache entry found for ' . $path . ' (storage: ' . $storage->getId() . ', internalPath: ' . $internalPath . ')'); return false; } |