diff options
Diffstat (limited to 'lib/helper.php')
-rw-r--r-- | lib/helper.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/helper.php b/lib/helper.php index 5b1efd749ae..0c6c73aa76b 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -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); } } |