We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cfe136 commit a3a60a3Copy full SHA for a3a60a3
src/Traits/ReusableTrait.php
@@ -59,16 +59,16 @@ public function autoStartDebugger()
59
{
60
// if DEBUG MODE IS ON
61
if(Manager::setEnvBool(APP_DEBUG)){
62
+
63
+ // register debugger
64
// header not sent
65
if (!headers_sent()) {
- // Debugger::enable(!APP_DEBUG);
66
+ // Debugger::enable(!APP_DEBUG);
67
}
-
- // register debugger
68
Debugger::$showBar = false;
69
Debugger::$strictMode = true; // display all errors
70
Debugger::$maxDepth = 5; // default: 3
71
- Debugger::$maxLength = 10000; // default: 150
+ Debugger::$maxLength = 5000; // default: 150
72
Debugger::$dumpTheme = $this->getBgColor(APP_DEBUG_BG);
73
74
0 commit comments