write_line
The write_line
method writes a message to the log stream.
Syntax
write_line( level, message )
Arguments
Argument | Description |
---|---|
level
|
The log level for the message. The message only appears in the log if the log level specified here is the same as, or higher than, the log level set for the log stream. To obtain the correct value for the log level, use one of the following functions:
|
message
|
(string) The message to write to the log stream. |
Example
local config = get_config("connector.cfg") local log = get_log(config, "SynchronizeLogStream") log:write_line( log_level_error() , "This message is written to the synchronize log")