Changeset 659

Show
Ignore:
Timestamp:
05/14/07 17:27:15 (6 years ago)
Author:
lmajano
Message:

Missing column on Timer

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • coldbox/trunk/src/system/plugins/timer.cfc

    r634 r659  
    6565                <!---Get the timer scope if it exists, else create it ---> 
    6666                <cfif not structKeyExists(request,"DebugTimers")> 
    67                         <cfset request.DebugTimers = QueryNew("Method,Time,Timestamp,RC")> 
     67                        <cfset request.DebugTimers = QueryNew("Id,Method,Time,Timestamp,RC")> 
    6868                </cfif> 
    6969                <cfreturn request.DebugTimers> 
     
    7878                var qTimer = getTimerScope(); 
    7979                QueryAddRow(qTimer,1); 
     80                QuerySetCell(qTimer, "Id", createUUID()); 
    8081                QuerySetCell(qTimer, "Method", arguments.Label); 
    8182                QuerySetCell(qTimer, "Time", arguments.Tickcount);