12.13 LOG_INFO Procedure
This procedure writes a log entry with severity of INFO
which can
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. |
Example
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;
Parent topic: APEX_AUTOMATION