consoleDebugLevel PARAM tag



Controls the detail in debugging messages sent to the debug window or to the console.

Syntax

<PARAM NAME = "consoleDebugLevel" VALUE = "level">

Values

level
Specifies the debug message detail level. The following level values are available:


Level Value Description
0 No message detail is displayed.
1 Displays only error detail.
2 Displays only errors and exceptions detail.
3 Displays op detail. These are messages for high level operations such as loading a driver, opening a database, and executing a query.
4 Displays subop detail. These are messages for component phases of operations. This mostly applies to query execution.
5 Displays all detail. This may take a long time as many text strings are generated.

The default level is 4 (LEVEL_SUBOP) if the allowUI PARAM tag value is set to True. If not, the default level is 0 (LEVEL_NONE).

Usage

Controls the detail in debugging messages shown in the debug window (lotus.util.Debug.println) or in messages sent to the console (System.out.println - the "java console"). You must have the allowUI PARAM tag value set to true to use this feature. The data type is integer.

Example
consoleDebugLevel PARAM tag example

See also
Jdbcsource applet
allowUI PARAM tag
Using the JdbcSource applet user interface