Index: trunk/extensions/Translate/SpecialLanguageStats.php |
— | — | @@ -227,8 +227,9 @@ |
228 | 228 | list( $fuzzy, $translated, $total ) = $this->loadPercentages( $cache, $g, $code ); |
229 | 229 | } |
230 | 230 | |
231 | | - if ( $total === 0 ) { |
232 | | - wfWarn( __METHOD__ . ": Group $groupName has zero message ($code)" ); |
| 231 | + if ( $total == 0 ) { |
| 232 | + $zero = serialize( $total ); |
| 233 | + error_log( __METHOD__ . ": Group $groupName has zero message ($code): $zero" ); |
233 | 234 | continue; |
234 | 235 | } |
235 | 236 | |