Log

Write the text you provide to the log file, with severity level INFO.

Location

/lib/debug/

Syntax

log (IN textToLog VARCHAR (4096))

Input

textToLog: The text to write to the log.

Outputs

N/A

Exceptions

N/A

Example

PROCEDURE proc1()
    BEGIN
        CALL Log('Hello');
        CALL Log('Hello World');
    END