Changeset 659
- Timestamp:
- 05/14/07 17:27:15 (6 years ago)
- Files:
-
- 1 modified
-
coldbox/trunk/src/system/plugins/timer.cfc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/src/system/plugins/timer.cfc
r634 r659 65 65 <!---Get the timer scope if it exists, else create it ---> 66 66 <cfif not structKeyExists(request,"DebugTimers")> 67 <cfset request.DebugTimers = QueryNew(" Method,Time,Timestamp,RC")>67 <cfset request.DebugTimers = QueryNew("Id,Method,Time,Timestamp,RC")> 68 68 </cfif> 69 69 <cfreturn request.DebugTimers> … … 78 78 var qTimer = getTimerScope(); 79 79 QueryAddRow(qTimer,1); 80 QuerySetCell(qTimer, "Id", createUUID()); 80 81 QuerySetCell(qTimer, "Method", arguments.Label); 81 82 QuerySetCell(qTimer, "Time", arguments.Tickcount);
