Whatever message this page gives is out now! Go check it out!
ColdFusion.Log.info(message [, category]) |
| 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. |
ColdFusion.Log.info("<b>arg.A is:</b><br>" + arg.A, "Window Z"); |