File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,7 @@ component extends="coldbox.system.Interceptor" {
35
35
36
36
// Collect baby!
37
37
arguments .interceptData .timestamp = now ();
38
- if (
39
- ! structKeyExists (
40
- requestTracker .qbQueries .grouped ,
41
- sqlHash
42
- )
43
- ) {
38
+ if ( ! structKeyExists ( requestTracker .qbQueries .grouped , sqlHash ) ) {
44
39
requestTracker .qbQueries .grouped [ sqlHash ] = {
45
40
" sql" : arguments .interceptData .sql ,
46
41
" count" : 0 ,
@@ -55,7 +50,7 @@ component extends="coldbox.system.Interceptor" {
55
50
" params" : variables .debuggerConfig .qb .logParams ? arguments .interceptData .bindings : [],
56
51
" options" : arguments .interceptData .options ,
57
52
" executionTime" : arguments .interceptData .executionTime ,
58
- " caller" : variables .debuggerService .discoverCallingStack ( " get" , " QueryBuilder" )
53
+ " caller" : variables .debuggerService .discoverCallingStack ( " get" , " ( QueryBuilder|QuickBuilder) " )
59
54
};
60
55
61
56
// Log by Group
Original file line number Diff line number Diff line change @@ -576,7 +576,7 @@ component
576
576
// Do we have template matches or simple function equality?
577
577
if ( ! isNull ( templateMatch ) ) {
578
578
if (
579
- arguments .item .function == targetMethod && findNoCase (
579
+ arguments .item .function == targetMethod && refindNoCase (
580
580
templateMatch ,
581
581
arguments .item .template
582
582
)
You can’t perform that action at this time.
0 commit comments