10.13 LOG_INFO Procedure

This procedure logs procedures to be used within automation code.

Syntax

APEX_AUTOMATION.LOG_INFO (
    p_message   IN VARCHAR2 )

Parameters

Parameter Description
p_message Message to write to the automation log.

Examples

This example writes some log information. The automation uses select * from emp as the automation query.

BEGIN
    IF :SAL > 10000 THEN
        apex_automation.log_info( p_message => 'High Salary found for empno: ' || :EMPNO );
    END IF;
    my_logic_package.process_emp( 
        p_empno  => :EMPNO,
        p_sal    => :SAL,
        p_depto  => :DEPTNO );
END;