summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-04-29 15:09:47 +0200
committerRobin Appelman <icewind@owncloud.com>2012-04-29 15:09:47 +0200
commite3adbcb7d58d06c2bac8d925930d2deb2ed563ea (patch)
tree800cc280d6202f8fb4a33143ffc299c480950c00 /lib/filesystem.php
parent09a5c59cca415a046766ae7262926460721902ad (diff)
downloadnextcloud-server-e3adbcb7d58d06c2bac8d925930d2deb2ed563ea.tar.gz
nextcloud-server-e3adbcb7d58d06c2bac8d925930d2deb2ed563ea.zip
remove non existing files from the cache when rescanning a folder
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r--lib/filesystem.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 1b91eabc7c1..cac7e8648ef 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -275,6 +275,7 @@ class OC_Filesystem{
if(class_exists($class)){
return new $class($arguments);
}else{
+ OC_Log::write('core','storage backend '.$class.' not found',OC_Log::ERROR);
return false;
}
}