File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## [ 3.1.0] => 2021-APR
11
11
12
+ ### Fixed
13
+
14
+ * [ CBDEBUGGER-1] - Lucee debugger no longer shows below the cbDebugger. Turn off only on Ajax Calls
15
+
12
16
### Changed
13
17
14
18
* [ CBDEBUGGER-2] - Made ` cborm ` and ` qb ` disabled by default
Original file line number Diff line number Diff line change @@ -21,8 +21,10 @@ component extends="coldbox.system.RestHandler" {
21
21
// Global params
22
22
event .paramValue ( " frequency" , 0 ).paramValue ( " isVisualizer" , false );
23
23
24
- // Don't show cf debug
25
- cfsetting ( showdebugoutput = " false" );
24
+ // Don't show cf debug on ajax calls
25
+ if ( event .isAjax () ){
26
+ cfsetting ( showdebugoutput = " false" );
27
+ }
26
28
27
29
// If not enabled, just 404 it
28
30
if ( ! variables .debuggerService .getDebugMode () ) {
You can’t perform that action at this time.
0 commit comments