mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
9 lines
212 B
Lua
9 lines
212 B
Lua
require "logging.file"
|
|
--logger = logging.file("test_08_TEST_%s.log", "%Y-%m-%d")
|
|
logger = logging.file("test_08_TEST.log")
|
|
logger:debug("running the file...")
|
|
|
|
function myfunc(a,b,c)
|
|
return a..b..c
|
|
end
|