Browse Source

limit the cli debug uptput

pull/40/head
czaks 10 years ago
parent
commit
4287822229
  1. 2
      inc/display.php

2
inc/display.php

@ -82,7 +82,7 @@ function error($message, $priority = true, $debug_stuff = false) {
if (defined('STDIN')) {
// Running from CLI
echo('Error: ' . $message . "\n");
debug_print_backtrace();
debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
die();
}

Loading…
Cancel
Save