remove debug statements from Sitemap plugin

This commit is contained in:
Evan Prodromou 2010-06-03 15:19:46 -04:00
parent d17dd32aac
commit 1100831bc0
2 changed files with 0 additions and 5 deletions

View 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);

View 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;