]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/filteringnoticestream.php
Remove filtering notice stream debug comments
[quix0rs-gnu-social.git] / lib / filteringnoticestream.php
index 9996578233b978516cab961c347816b84a322aeb..221e9cd70591302d33f4644a0f8012b51a3cfee6 100644 (file)
@@ -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);