|  Previous |  Next | 
This procedure is used to delete all data from a given session within your workspace from the debug message log.
Syntax
APEX_DEBUG_MESSAGE.REMOVE_SESSION_MESSAGES (
    p_session    IN NUMBER  DEFAULT NULL);
Parameters
Table: REMOVE_SESSION_MESSAGES Parameters describes the parameters available in the REMOVE_SESSION_MESSAGES procedure.
REMOVE_SESSION_MESSAGES Parameters
| Parameter | Description | 
|---|---|
| 
 | The session ID. Defaults to your current session. | 
Example
This example demonstrates the removal of all debug messages logged within the current session. Note: As no value is passed for the p_session parameter, the procedure defaults to the current session.
BEGIN
    APEX_DEBUG_MESSAGE.REMOVE_SESSION_MESSAGES();
END;