From b23b5aae7fba9467fd0e6b6137268c894ea6f8e8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 29 Feb 2012 23:17:49 +0100 Subject: [PATCH] remove debug output --- lib/helper.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 5b1efd749a..0c6c73aa76 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); } }