This procedure logs messages at level c_log_level_info
.
Syntax
APEX_DEBUG.INFO ( p_message IN VARCHAR2, p0 IN VARCHAR2 DEFAULT NULL, p1 IN VARCHAR2 DEFAULT NULL, p2 IN VARCHAR2 DEFAULT NULL, p3 IN VARCHAR2 DEFAULT NULL, p4 IN VARCHAR2 DEFAULT NULL, p5 IN VARCHAR2 DEFAULT NULL, p6 IN VARCHAR2 DEFAULT NULL, p7 IN VARCHAR2 DEFAULT NULL, p8 IN VARCHAR2 DEFAULT NULL, p9 IN VARCHAR2 DEFAULT NULL, p_max_length IN PLS_INTEGER DEFAULT 1000 );
Parameters
Table 11-5 APEX_DEBUG.INFO Procedure Parameters
Parameter | Description |
---|---|
|
The debug message. Occurrences of '%s' are replaced by |
|
Substitution strings for '%s' placeholders. |
|
The |
Example
This example shows how to use APEX_DEBUG.INFO
to log information in the debug log.
apex_debug.info('Important: %s', 'fnord');
See Also:
Parent topic: APEX_DEBUG