Index: trunk/phase3/maintenance/mctest.php |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | $wgMemCachedServers = array( $this->getArg() ); |
42 | 42 | |
43 | 43 | foreach ( $wgMemCachedServers as $server ) { |
44 | | - $this->output( $server . " " ); |
| 44 | + $this->output( $server . " ", $server ); |
45 | 45 | $mcc = new MemCachedClientforWiki( array('persistant' => true) ); |
46 | 46 | $mcc->set_servers( array( $server ) ); |
47 | 47 | $set = 0; |
— | — | @@ -65,7 +65,7 @@ |
66 | 66 | } |
67 | 67 | $exectime = $this->microtime_float() - $time_start; |
68 | 68 | |
69 | | - $this->output( "set: $set incr: $incr get: $get time: $exectime\n" ); |
| 69 | + $this->output( "set: $set incr: $incr get: $get time: $exectime", $server ); |
70 | 70 | } |
71 | 71 | } |
72 | 72 | |