The get_log
method returns a LuaLog object that you can use to write log messages to a specified log type.
get_log( type )
Argument | Description |
---|---|
type
|
(string) The log type. |
(LuaLog). A LuaLog object.
local log = myLuaLogService:get_log("import") -- import is a standard log type for CFS
|