]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove debug statements from Sitemap plugin
authorEvan Prodromou <evan@status.net>
Thu, 3 Jun 2010 19:19:46 +0000 (15:19 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 3 Jun 2010 19:19:46 +0000 (15:19 -0400)
plugins/Sitemap/Sitemap_user_count.php
plugins/Sitemap/sitemapindex.php

index 7743b05326220648511be86487232c0e2cb4e0ba..64b4c34428bf904321f2e5f119dda6890f29001f 100644 (file)
@@ -168,7 +168,6 @@ class Sitemap_user_count extends Memcached_DataObject
         $counts = array();
 
         for ($d = $firstDate; $d <= $today; $d = self::incrementDay($d)) {
-            common_debug("Date = '$d'");
             $n = self::getCount($d);
             self::insertCount($d, $n);
             $counts[$d] = $n;
@@ -217,8 +216,6 @@ class Sitemap_user_count extends Memcached_DataObject
 
     static function insertCount($d, $n)
     {
-        common_debug("Inserting count '$n' for '$d'");
-
         $suc = new Sitemap_user_count();
 
         $suc->registration_date = DB_DataObject_Cast::date($d);
index 5150b1aeb8bd7aab7a487e10543fa123c5ae9974..169e3031cee9dac38252fee568a564a7e754f522 100644 (file)
@@ -91,8 +91,6 @@ class SitemapindexAction extends Action
     {
         $noticeCounts = Sitemap_notice_count::getAll();
 
-        common_debug(sprintf("Got %d notice counts", count($noticeCounts)));
-
         foreach ($noticeCounts as $dt => $cnt) {
             if ($cnt == 0) {
                 continue;