Merge pull request #10079 from owncloud/Improve_scanner_message

Improved scanner error message
This commit is contained in:
Thomas Müller 2014-08-07 16:09:52 +02:00
commit 520f6422ac
1 changed files with 1 additions and 1 deletions

View File

@ -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();