Merge pull request #14712 from nextcloud/remove-spaming-debug-logs

Remove spaming debug logs
This commit is contained in:
Morris Jobke 2019-03-15 14:46:44 +01:00 committed by GitHub
commit c01019b536
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -1374,7 +1374,6 @@ class View {
$data = $this->getCacheEntry($storage, $internalPath, $relativePath); $data = $this->getCacheEntry($storage, $internalPath, $relativePath);
if (!$data instanceof ICacheEntry) { if (!$data instanceof ICacheEntry) {
\OC::$server->getLogger()->debug('No cache entry found for ' . $path . ' (storage: ' . $storage->getId() . ', internalPath: ' . $internalPath . ')');
return false; return false;
} }

View File

@ -115,7 +115,6 @@ class CSSResourceLocator extends ResourceLocator {
return false; return false;
} }
} else { } else {
$this->logger->debug('Scss is disabled for '.$root.'/'.$file.', ignoring', ['app' => 'core']);
return true; return true;
} }
} }