From 0774ef456d278a81095c2fd20d78c3518d387531 Mon Sep 17 00:00:00 2001
From: Evan Prodromou <evan@status.net>
Date: Mon, 2 Apr 2012 21:29:57 -0400
Subject: [PATCH] Remove filtering notice stream debug comments

---
 lib/filteringnoticestream.php | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/lib/filteringnoticestream.php b/lib/filteringnoticestream.php
index 9996578233..221e9cd705 100644
--- a/lib/filteringnoticestream.php
+++ b/lib/filteringnoticestream.php
@@ -74,8 +74,6 @@ abstract class FilteringNoticeStream extends NoticeStream
 
         do {
 
-            common_debug(get_class($this) . ": ($offset, $limit) Round $round: fetching $askFor notices starting at $startAt");
-
             $raw = $this->upstream->getNotices($startAt, $askFor, $sinceId, $maxId);
 
             $results = $raw->N;
@@ -111,8 +109,6 @@ abstract class FilteringNoticeStream extends NoticeStream
                 $askFor = max(min(intval(ceil(($total - $hits)*$startAt/$hits)), NOTICES_PER_PAGE * 50), NOTICES_PER_PAGE);
             }
 
-            common_debug(get_class($this) . ": ($offset, $limit) Round $round hits is $hits, results = $results.");
-
             $round++;
 
         } while (count($filtered) < $total && $results >= $lastAsk);
-- 
2.39.5