]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Removed noisy debugging statements
authorZach Copley <zach@controlyourself.ca>
Fri, 17 Jul 2009 18:40:38 +0000 (11:40 -0700)
committerZach Copley <zach@controlyourself.ca>
Fri, 17 Jul 2009 19:41:54 +0000 (12:41 -0700)
classes/Profile.php

index 224b61bd2ee3508f19789923879b07f5ae3582e5..372005cddf77123729752ef8e8b1c04c4c9b4815 100644 (file)
@@ -360,7 +360,6 @@ class Profile extends Memcached_DataObject
             $c->set(common_cache_key('profile:subscription_count:'.$this->id), $cnt);
         }
 
-        common_debug("subscriptionCount == $cnt");
         return $cnt;
     }
 
@@ -385,7 +384,6 @@ class Profile extends Memcached_DataObject
             $c->set(common_cache_key('profile:subscriber_count:'.$this->id), $cnt);
         }
 
-        common_debug("subscriberCount == $cnt");
         return $cnt;
     }
 
@@ -407,7 +405,6 @@ class Profile extends Memcached_DataObject
             $c->set(common_cache_key('profile:fave_count:'.$this->id), $cnt);
         }
 
-        common_debug("faveCount == $cnt");
         return $cnt;
     }
 
@@ -430,7 +427,6 @@ class Profile extends Memcached_DataObject
             $c->set(common_cache_key('profile:notice_count:'.$this->id), $cnt);
         }
 
-        common_debug("noticeCount == $cnt");
         return $cnt;
     }