remove debug statements from Sitemap plugin
This commit is contained in:
parent
d17dd32aac
commit
1100831bc0
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user