Microsoft SDK for Java

Debug.print

Prints the specified message to the current debug output mechanism.

Syntax

public static void print( String message )

Parameters

message

The message to print.

Remarks

By default, this method prints through System.out.print to the screen. If you are running in a native code debugger, it also outputs to the debugger's output window. This method will be omitted from your code unless you have either the DEBUG or TRACE conditional compile switch set.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.