You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ moduleSettings = {
152
152
cborm : {
153
153
enabled :true,
154
154
expanded :false,
155
-
// Log the binding parameters
155
+
// Log the binding parameters (requires CBORM 3.2.0+)
156
156
logParams :true
157
157
},
158
158
// Async Manager Reporting
@@ -374,12 +374,14 @@ We have a dedicated panel in the debugger that will track all criteria queries a
374
374
cborm : {
375
375
enabled :true,
376
376
expanded :false,
377
-
// Log the binding parameters
377
+
// Log the binding parameters (requires CBORM 3.2.0+)
378
378
logParams :true
379
379
}
380
380
```
381
381
382
-
You can also select to `logParams` and we will track the original executable parameters of the query so you can debug the actual values of these executions. We will also track from WHERE in the application the sql execution came from and you can even open the file to that specific line number using our code editor integrations by clicking our **open in editor** buttons.
382
+
You can also enable `logParams` and we will track the original executable parameters of the query so you can debug the actual values of these executions. We will also track from WHERE in the application the sql execution came from and you can even open the file to that specific line number using our code editor integrations by clicking our **open in editor** buttons.
383
+
384
+
> **Note**: CBDebugger's `cborm.logParams` setting requires CBORM 3.2.0 or higher.
383
385
384
386
The grouped view you see above will give you an aggregate look of all the sql calls made during the request and their frequency of execution. It will also give you a mini report of those specific sql groups with data about where the query originated from in your source code and the binding parameters, if activated.
0 commit comments