We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b274fd4 commit 8465a9dCopy full SHA for 8465a9d
core/src/Providers/TracyServiceProvider.php
@@ -26,6 +26,12 @@ protected function activateTracy() : void
26
Debugger::$showLocation = $this->isShowLocation();
27
Debugger::$maxDepth = 20;
28
Debugger::$maxLength = 200;
29
+ if($this->app['config']->get('tracy.editor')) {
30
+ Debugger::$editor = $this->app['config']->get('tracy.editor');
31
+ }
32
+ if($this->app['config']->get('tracy.editorMapping')) {
33
+ Debugger::$editorMapping = $this->app['config']->get('tracy.editorMapping');
34
35
36
$this->registerErrorTpl();
37
$this->registerPanels($this->listPanels());
0 commit comments