print

Display a message on all output consoles and log file currently attached to the server.

print(strInfo);

Parameters

  • strInfo : [in] String, freeform text.

 

Return Values

None

 

Remarks

Also writes the message into the server log file that is specified under <log> in the main configuration file.

You should not use print for message tracing or logging. Instead, use a transaction filter adapter for statistics and the Trace functions for tracing.

It is a better design to use print sparely only for severe exception reporting.

 

Example

print("Test");