remove debug output

This commit is contained in:
Robin Appelman 2012-02-29 23:17:49 +01:00
parent baffa03fa5
commit b23b5aae7f
1 changed files with 0 additions and 2 deletions

View File

@ -432,7 +432,6 @@ class OC_Helper {
$fh=fopen($file,'w');
fclose($fh);
self::$tmpFiles[]=$file;
error_log($file);
return $file;
}
@ -442,7 +441,6 @@ class OC_Helper {
public static function cleanTmp(){
foreach(self::$tmpFiles as $file){
if(file_exists($file)){
error_log("clean $file");
unlink($file);
}
}