Use this procedure to delete all data for a specified view from the message log.
Syntax
APEX_DEBUG.REMOVE_DEBUG_BY_VIEW ( 
    p_application_id IN NUMBER, 
    p_view_id IN NUMBER); 
Parameters
Table 8-12 APEX_DEBUG.REMOVE_DEBUG_BY_VIEW Procedure Parameters
| Parameter | Description | 
|---|---|
| 
 
  | 
 The application ID of the application.  | 
| 
 
  | 
 The view ID of the view.  | 
Example
This example demonstrates the removal of debug messages within the 'View Identifier' of 12345, belonging to the current application.
BEGIN
    APEX_DEBUG.REMOVE_DEBUG_BY_VIEW (
        p_application_id => TO_NUMBER(:APP_ID),
        p_view_id        => 12345 );
END;