summaryrefslogtreecommitdiffstats
path: root/lib/helper.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-02-29 23:17:49 +0100
committerRobin Appelman <icewind@owncloud.com>2012-02-29 23:17:49 +0100
commitb23b5aae7fba9467fd0e6b6137268c894ea6f8e8 (patch)
tree8a6e0e0dfc29722c4917f4fdae413ae994c4ad5b /lib/helper.php
parentbaffa03fa59430312e9c625451c633b54a3a51ce (diff)
downloadnextcloud-server-b23b5aae7fba9467fd0e6b6137268c894ea6f8e8.tar.gz
nextcloud-server-b23b5aae7fba9467fd0e6b6137268c894ea6f8e8.zip
remove debug output
Diffstat (limited to 'lib/helper.php')
-rw-r--r--lib/helper.php2
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);
}
}