logDebug

void session.logDebug ( Object message ) (professional and enterprise editions only)

Description

Write message to the log, at the the debug level (most verbose).

Parameters

  • message Message to be written to the log after being converted to a String using String.valueOf( message ).

Return Values

Returns void.

Change Log

Version Description
5.5 Now accepts any Object as a message
4.5 Available for professional and enterprise editions.

Examples

Write to Log at Debug level

 // Sends the message to the lowest level of logging.
 session.logDebug( "Index: " + session.getVariable( "INDEX" ) );

  • log() [session] - Sends a message to the log as a debugging message
  • logInfo() [session] - Sends a message to the log as an informative message
  • logWarn() [session] - Sends a message to the log as a warning
  • logError() [session] - Sends a message to the log as an error message
  • debug() [log] - Sends a message to the log as a debug message