diff options
author | Joas Schilling <coding@schilljs.com> | 2019-03-15 12:13:44 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-03-15 12:13:44 +0100 |
commit | 17d5e47937fc3149c7da5e5391586d8c0b26d72b (patch) | |
tree | af5f760194742b1d3edde305f236bee1e8e2822f /lib/private | |
parent | 6bc1c885b209563b12148858daf22e17d3005c58 (diff) | |
download | nextcloud-server-17d5e47937fc3149c7da5e5391586d8c0b26d72b.tar.gz nextcloud-server-17d5e47937fc3149c7da5e5391586d8c0b26d72b.zip |
Remove spaming debug logs
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Files/View.php | 1 | ||||
-rw-r--r-- | lib/private/Template/CSSResourceLocator.php | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index 10fbf00e73c..736859b232b 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -1374,7 +1374,6 @@ 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; } diff --git a/lib/private/Template/CSSResourceLocator.php b/lib/private/Template/CSSResourceLocator.php index 5ca05d1b953..089c9eee521 100644 --- a/lib/private/Template/CSSResourceLocator.php +++ b/lib/private/Template/CSSResourceLocator.php @@ -115,7 +115,6 @@ class CSSResourceLocator extends ResourceLocator { return false; } } else { - $this->logger->debug('Scss is disabled for '.$root.'/'.$file.', ignoring', ['app' => 'core']); return true; } } |