Log mount and storage issues in getFileInfo
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
d6dea09f48
commit
0bfda02e14
|
@ -1360,6 +1360,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();
|
||||
|
@ -1391,6 +1392,8 @@ class View {
|
|||
}
|
||||
|
||||
return $info;
|
||||
} else {
|
||||
\OC::$server->getLogger()->warning('Storage not valid for mountpoint: ' . $mount->getMountPoint());
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue