Browse Source

Merge pull request #9397 from nextcloud/log-fileinfo-not-found

Debug log file not found when getting fileinfo
pull/9412/head
Morris Jobke 8 years ago
committed by GitHub
parent
commit
7639f680a2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      lib/private/Files/View.php

1
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;
}

Loading…
Cancel
Save