Merge pull request #9364 from nextcloud/log-invalid-storage

Log mount and storage issues in getFileInfo
This commit is contained in:
Morris Jobke 2018-05-04 12:01:33 +02:00 committed by GitHub
commit 2780bb0b2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1361,6 +1361,7 @@ class View {
$mount = Filesystem::getMountManager()->find($path);
if (!$mount) {
\OC::$server->getLogger()->warning('Mountpoint not found for path: ' . $path);
return false;
}
$storage = $mount->getStorage();
@ -1392,6 +1393,8 @@ class View {
}
return $info;
} else {
\OC::$server->getLogger()->warning('Storage not valid for mountpoint: ' . $mount->getMountPoint());
}
return false;