diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-03-25 14:23:46 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-03-27 19:12:53 +0100 |
commit | 18554059a4be6540c4c16e8bbc6778b734b3371b (patch) | |
tree | 4d7f35ea66f53e136a43c3ae83f48ba7b39dda29 /core/ajax/update.php | |
parent | e2afd0cb42af17a968d6fbefac7372d13b71399a (diff) | |
download | nextcloud-server-18554059a4be6540c4c16e8bbc6778b734b3371b.tar.gz nextcloud-server-18554059a4be6540c4c16e8bbc6778b734b3371b.zip |
Remove Debug output
Diffstat (limited to 'core/ajax/update.php')
-rw-r--r-- | core/ajax/update.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index a2fc72f511c..e40d0def4e4 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -36,7 +36,6 @@ if (OC::checkUpgrade(false)) { * @param UpdateWatcher $watcher */ function __doFileCacheUpgrade($watcher) { - file_put_contents('/tmp/debug', "START\n", FILE_APPEND); $query = \OC_DB::prepare(' SELECT DISTINCT user FROM`*PREFIX*fscache` @@ -47,7 +46,6 @@ function __doFileCacheUpgrade($watcher) { return; } $step = 100 / count($users); - file_put_contents('/tmp/debug', 'Step '. print_r($step, true)."\n", FILE_APPEND); $percentCompleted = 0; $lastPercentCompletedOutput = 0; $startInfoShown = false; |