Debug.println

Overview | Methods | This Package | All Packages

Debug.println

Prints the specified message to the current debug output mechanism.

Syntax

public static void println( String message )

Parameters

message

The message to print.

Remarks

By default, this method prints through System.out.println to the screen. If you are running the program from within a native code debugger, this outputs to the debugger's window. This method is omitted from your code unless you have the DEBUG conditional compile switch set.