diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-02-29 23:17:49 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-02-29 23:17:49 +0100 |
commit | b23b5aae7fba9467fd0e6b6137268c894ea6f8e8 (patch) | |
tree | 8a6e0e0dfc29722c4917f4fdae413ae994c4ad5b /lib/helper.php | |
parent | baffa03fa59430312e9c625451c633b54a3a51ce (diff) | |
download | nextcloud-server-b23b5aae7fba9467fd0e6b6137268c894ea6f8e8.tar.gz nextcloud-server-b23b5aae7fba9467fd0e6b6137268c894ea6f8e8.zip |
remove debug output
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); } } |