summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-08-07 16:09:52 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-08-07 16:09:52 +0200
commit520f6422ac5e49133d4ad4a48d4a89a5a3fac54d (patch)
tree41e4e51e7e3d145b3c775071f13ef2c382641710 /lib
parente33fc2807cef5c4e797f244e782c23e78a1d02fe (diff)
parentd975012ae6322de791582491a34df28fc3b234a0 (diff)
downloadnextcloud-server-520f6422ac5e49133d4ad4a48d4a89a5a3fac54d.tar.gz
nextcloud-server-520f6422ac5e49133d4ad4a48d4a89a5a3fac54d.zip
Merge pull request #10079 from owncloud/Improve_scanner_message
Improved scanner error message
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/cache/scanner.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php
index 89fa6b8cc13..2d87871fd89 100644
--- a/lib/private/files/cache/scanner.php
+++ b/lib/private/files/cache/scanner.php
@@ -67,7 +67,7 @@ class Scanner extends BasicEmitter {
public function getData($path) {
if (!$this->storage->isReadable($path)) {
//cant read, nothing we can do
- \OCP\Util::writeLog('OC\Files\Cache\Scanner', "!!! Path '$path' is not readable !!!", \OCP\Util::DEBUG);
+ \OCP\Util::writeLog('OC\Files\Cache\Scanner', "!!! Path '$path' is not accessible or present !!!", \OCP\Util::DEBUG);
return null;
}
$data = array();