| Contents > CFML Reference > ColdFusion Java CFX Reference > Response interface > writeDebug |
|
|
|
|
||
Writes text output into the debug stream. This text is displayed to the end-user only if the tag contains the debug attribute (check for this attribute using the Request.debug member function).
public void writeDebug(String output)
Parameter |
Description |
|---|---|
output |
The text to output |
The following example checks whether the debug attribute is present; if so, it writes a brief debug message:
if ( request.debug() )
{
response.writeDebug( "debug info" ) ;
}
|
|
||
| Contents > CFML Reference > ColdFusion Java CFX Reference > Response interface > writeDebug |
|
|
ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | Bug Reporting
Version 6.1
Comments are no longer accepted for ColdFusion MX 6.1. ColdFusion 8 is the current version.