The get_log
method reads a configuration file and returns a LuaLog object that provides the capability to use the specified log stream.
get_log( config, logstream )
Argument | Description |
---|---|
config
|
(LuaConfig) A LuaConfig object that represents the configuration file which contains the log stream. You can obtain a LuaConfig object using the function get_config. |
logstream
|
(string) The name of the section in the configuration file that contains the settings for the log stream. |
(LuaLog). A LuaLog object that provides the capability to use the log stream.
local config = get_config("connector.cfg") local log = get_log(config, "SynchronizeLogStream")
|