Changes between Version 11 and Version 12 of ReferenceMaterials/EventApi

Show
Ignore:
Timestamp:
10/12/10 16:18:16 (15 years ago)
Author:
jugul4r@… (IP: 68.7.19.201)
Comment:

Added all available arguments for addTraceStatement

Legend:

Unmodified
Added
Removed
Modified
  • ReferenceMaterials/EventApi

    v11 v12  
    2121 
    2222---- 
    23 == !AddTraceStatement(name:string, value:any) == 
     23== !AddTraceStatement(name:string, value:any [, tag:string, traceType:string]) == 
    2424 
    2525==== Description: ==== 
     
    3333==== Arguments: ==== 
    3434 
    35 Name (Required) - A label to identify the value in the debugging trace 
    36  
    37 Value (Required) - The value to display in the debugging trace. If a complex value is passed, the result of its <cfdump> is displayed. 
     35Name (required) - A label to identify the value in the debugging trace 
     36 
     37Value (required) - The value to display in the debugging trace. If a complex value is passed, the result of its <cfdump> is displayed. 
     38 
     39Tag (optional) - A string value that is displayed underneath the Value. Model Glue will write different values here depending on the stage of the request. For example when a event handler is executed and written to the log the value that is displayed in the tag is the event handler name. 
     40 
     41!TraceType (optional) - If present the traceType will change the background color of the row in the debugging output. This value can be any string, but the default logRenderer will only colorize the log line if the value is either 'USER' or 'WARNING'.  
    3842 
    3943----