mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-17 00:35:55 +01:00
9 lines
206 B
Lua
9 lines
206 B
Lua
|
require"logging.console"
|
||
|
|
||
|
local logger = logging.console()
|
||
|
|
||
|
logger:info("logging.console test")
|
||
|
logger:debug("debugging...")
|
||
|
logger:error("error!")
|
||
|
logger:debug("string with %4")
|
||
|
print("Console Logging OK")
|