From b634488e113b1056091c69143c4f1b9b1cc31e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Mon, 15 Jun 2009 08:14:32 +0000 Subject: [PATCH] Comment out output to console git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1516 44740490-163a-0410-bde0-09ae8108e29a --- modules/statistics/lib/Aggregator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/statistics/lib/Aggregator.php b/modules/statistics/lib/Aggregator.php index 1a82ef9d6..010045801 100644 --- a/modules/statistics/lib/Aggregator.php +++ b/modules/statistics/lib/Aggregator.php @@ -269,13 +269,13 @@ class sspmod_statistics_Aggregator { $filename = $this->statdir . '/' . $rulename . '-' . $tres . '-' . $fileno . '.stat'; if (file_exists($filename)) { - echo('Reading existing file: ' . $filename . "\n"); + // echo('Reading existing file: ' . $filename . "\n"); $previousData = unserialize(file_get_contents($filename)); $filledresult = $this->cummulateData($previousData, $filledresult); } // store file - echo('Writing to file: ' . $filename . "\n"); + # echo('Writing to file: ' . $filename . "\n"); file_put_contents($filename, serialize($filledresult), LOCK_EX); } -- GitLab