X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=index.php;h=6f4585b3dcec4e5637396e6b1296da7fe7fe9368;hp=979aa45f3d9642dd186e00ad7557abc7a78d540f;hb=dcd4b63322e74f6571fd85d6379c9dafa94fde10;hpb=4fc7dad58ab43e438b47356f0efa84ab3f6276bd diff --git a/index.php b/index.php index 979aa45..6f4585b 100644 --- a/index.php +++ b/index.php @@ -111,7 +111,12 @@ final class ApplicationEntryPoint { if (!isset($trace['file'])) $trace['file'] = __FILE__; if (!isset($trace['line'])) $trace['line'] = __LINE__; if (!isset($trace['args'])) $trace['args'] = array(); - $backtrace .= "".basename($trace['file']).":".$trace['line'].", ".$trace['function']."(".count($trace['args']).")
"; + $backtrace .= sprintf("%s:%d, %s(%d)
\n", + basename($trace['file']), + $trace['line'], + $trace['function'], + count($trace['args']) + ); } // END - foreach // Init application instance @@ -198,7 +203,6 @@ final class ApplicationEntryPoint { // Include the application selector require($cfg->getConfigEntry('base_path') . 'inc/selector.php'); } // END - main() - } // END - class // Do not remove the following line: