23.17 REMOVE_DEBUG_BY_APP Procedure

Deletes all data belonging to a specified application from the debug message log.

Syntax

APEX_DEBUG.REMOVE_DEBUG_BY_APP (
    p_application_id    IN NUMBER )

Parameters

Parameter Description
p_application_id The application ID of the application.

Example

This example removes all debug messages logged for the current application.

BEGIN
    APEX_DEBUG.REMOVE_DEBUG_BY_APP(
        p_application_id => TO_NUMBER(:APP_ID) );
END;