The get_log method returns a LuaLog object that provides the capability to write messages to a specified log type.
get_log( log_type )
| Argument | Description | 
|---|---|
| log_type | (string) The log type name. | 
(LuaLog). A LuaLog object.
local log = get_log("application")
log:write_line(log_level_normal(), "doing something...")
        
        |  |