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
docs: Add note that cborm.logParams requires modern CBORM
CBDebugger breaks on logCriteriaQuery if the app is using a CBORM version older than 3.2.0.
The workaround is setting `moduleSettings.cbDebugger.cborm.logParams` to false:
```
cbDebugger : {
enabled : true,
...
cborm : {
enabled : true,
expanded : false,
// Log the binding parameters
logParams : false
}
}
```
0 commit comments