Index: trunk/phase3/includes/parser/ParserCache.php |
— | — | @@ -170,14 +170,14 @@ |
171 | 171 | $value = $this->mMemc->get( $parserOutputKey ); |
172 | 172 | } |
173 | 173 | if ( !$value ) { |
174 | | - wfDebug( "Parser cache miss.\n" ); |
| 174 | + wfDebug( "ParserOutput cache miss.\n" ); |
175 | 175 | wfIncrStats( "pcache_miss_absent" ); |
176 | 176 | wfProfileOut( __METHOD__ ); |
177 | 177 | return false; |
178 | 178 | } |
179 | 179 | |
180 | | - wfDebug( "Found.\n" ); |
181 | | - |
| 180 | + wfDebug( "ParserOutput cache found.\n" ); |
| 181 | + |
182 | 182 | // The edit section preference may not be the appropiate one in |
183 | 183 | // the ParserOutput, as we are not storing it in the parsercache |
184 | 184 | // key. Force it here. See bug 31445. |