mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
9 lines
189 B
Lua
9 lines
189 B
Lua
require"logging.socket"
|
|
|
|
local logger = logging.socket("localhost", 5000)
|
|
|
|
logger:info("logging.socket test")
|
|
logger:debug("debugging...")
|
|
logger:error("error!")
|
|
|
|
print("Socket Logging OK") |