summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin <martin.mattel@diemattels.at>2014-07-31 13:12:35 +0200
committerMartin <martin.mattel@diemattels.at>2014-07-31 13:12:35 +0200
commitd975012ae6322de791582491a34df28fc3b234a0 (patch)
treeab9b5cc591a89e3596e3e6ad8d374993212a4132
parent2946a63f6bbcf298a30bb89ed72dbb650bc39def (diff)
downloadnextcloud-server-d975012ae6322de791582491a34df28fc3b234a0.tar.gz
nextcloud-server-d975012ae6322de791582491a34df28fc3b234a0.zip
Improved scanner error message
-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();