Displays an error-level message in a log window.
ColdFusion.Log.error(message
[,category
])
ColdFusion.Log.debug, ColdFusion.Log.dump, ColdFusion.Log.info, "Logging information" in the ColdFusion Developer's Guide
ColdFusion 8: Added this function
Parameter |
Description |
---|---|
message |
The text message to display in the log window. The log message can include HTML markup and JavaScript variables. |
category |
A category identifier that you can use in the logging window to filter the output. You can specify any arbitrary category in this function. The default value is global. |
This function does not return a value.
If the page that calls this function does not have any ColdFusion AJAX-based controls, you must use a cfajaximport tag on the page to ensure that the page includes the JavaScript definition for this function.
The log window appears if you specify a URL parameter of the format cfdebug or cfdebug="true" in your page request and you select the Enable AJAX Debug Log Window option on the ColdFusion Administrator Debugging & Logging > Debug Output Settings page.
ColdFusion.Log.error("<b>Invalid value:</b><br>" + arg.A, "Pod A");