]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
use printfv and printfnq
authorEvan Prodromou <evan@status.net>
Thu, 8 Mar 2012 13:49:30 +0000 (07:49 -0600)
committerEvan Prodromou <evan@status.net>
Thu, 8 Mar 2012 13:49:30 +0000 (07:49 -0600)
scripts/testuser.php

index 8e70a5985febba76c316b474d95f83e7d7cf6e47..028f58c0bb0a41e13807d93502172ce29db7bf55 100644 (file)
@@ -58,6 +58,8 @@ function testAllUsers() {
 
 function testUser($filter, $user) {
 
+    printfnq("Testing user %s\n", $user->nickname);
+
     $profile = $user->getProfile();
 
     $str = new ProfileNoticeStream($profile, $profile);
@@ -68,10 +70,10 @@ function testUser($filter, $user) {
     do {
         $notice = $str->getNotices($offset, $limit);
         while ($notice->fetch()) {
-            print "Testing notice " . $notice->id . "...";
+            printfv("Testing notice %d...", $notice->id);
             $result = $filter->test($notice);
             Spam_score::save($notice, $result);
-            print (($result->isSpam) ? "SPAM" : "HAM")."\n";
+            printfv("%s\n", ($result->isSpam) ? "SPAM" : "HAM");
         }
         $offset += $notice->N;
     } while ($notice->N > 0);