Use this procedure to delete from the debug message log all data belonging to a specified application.
Syntax
APEX_DEBUG.REMOVE_DEBUG_BY_APP ( p_application_id IN NUMBER);
Parameters
Table 11-11 APEX_DEBUG.REMOVE_DEBUG_BY_APP Procedure Parameters
Parameter | Description |
---|---|
|
The application ID of the application. |
Example
This example demonstrates removing all debug messages logged for the current application.
BEGIN APEX_DEBUG.REMOVE_DEBUG_BY_APP( p_application_id => TO_NUMBER(:APP_ID) ); END;
Parent topic: APEX_DEBUG