mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Improved scanner error message
This commit is contained in:
parent
2946a63f6b
commit
d975012ae6
1 changed files with 1 additions and 1 deletions
2
lib/private/files/cache/scanner.php
vendored
2
lib/private/files/cache/scanner.php
vendored
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue