Page MenuHomePhabricator
Paste P24021

Try to understand why a class is loaded twice
ActivePublic

Authored by Dereckson on Apr 1 2022, 4:02 PM.
Tags
None
Referenced Files
F35033847: raw-paste-data.txt
Apr 1 2022, 4:02 PM
Subscribers
// Babel issue
$trace = array_map( function ( $item ) { return $item["file"] . ":" . $item["line"] ; }, debug_backtrace() );
$fp = fopen( "/var/log/mediawiki/babel-issue.log", "a" );
fwrite( $fp, print_r( $trace, true ) );
fclose($fp);

Event Timeline

Dereckson changed the title of this paste from untitled to Try to understand why a class is loaded twice.