This procedure deletes from the debug message log all data for a given session in your workspace defaults to your current session.
Syntax
APEX_DEBUG.REMOVE_SESSION_MESSAGES (
    p_session    IN NUMBER  DEFAULT NULL);
Parameters
Table 8-13 APEX_DEBUG.REMOVE_SESSION_MESSAGES Procedure 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.REMOVE_SESSION_MESSAGES();
END;