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 18ec4d8 commit 55014a7Copy full SHA for 55014a7
modules/cbdebugger/ModuleConfig.cfc
@@ -114,4 +114,13 @@ component {
114
// incorporate settings
115
structAppend( configStruct.debugger, debuggerDSL, true );
116
}
117
+
118
+ // This appender is part of a module, so we need to register it after the modules have been loaded.
119
+ function afterConfigurationLoad() {
120
+ var logbox = controller.getLogBox();
121
+ var config = logbox.getConfig();
122
+ config.appender( 'tracer', 'cbdebugger.includes.appenders.ColdBoxTracerAppender' );
123
+ config.root( 0, 4, '*' );
124
+ logbox.configure( config );
125
+ }
126
0 commit comments