Skip to content
Snippets Groups Projects
Commit d4429a7d authored by Marius Burkard's avatar Marius Burkard Committed by Gwyneth Llewelyn
Browse files

Good point; I'd even use `!empty($caller['file']) && !empty($caller['line'])`...

Good point; I'd even use `!empty($caller['file']) && !empty($caller['line'])` to save a few cycles in the (improbable) case where both _may_ be set, but empty (thus making the whole exercise pointless...).
parent 39c76960
No related branches found
No related tags found
No related merge requests found
......@@ -251,7 +251,9 @@ class app {
$priority_txt = 'DEBUG';
$bt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); // we don't need _all_ data, so we save some processing time here (gwyneth 20220315)
$caller = array_shift($bt);
$file_line_caller = '[' . strtr(basename($caller['file'], '.php'), '_', ' ') . ':' . $caller['line'] . '] ';
if(isset($caller['file']) && isset($caller['line'])) {
$file_line_caller = '[' . strtr(basename($caller['file'], '.php'), '_', ' ') . ':' . $caller['line'] . '] ';
}
break;
case 1:
$priority_txt = 'WARNING';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment