mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 19:13:07 +00:00
10 lines
224 B
Lua
10 lines
224 B
Lua
local skynet = require "skynet"
|
|
|
|
skynet.start(function()
|
|
skynet.dispatch("lua", function(session, address, ...)
|
|
print("[GLOBALLOG]", skynet.address(address), ...)
|
|
end)
|
|
skynet.register ".log"
|
|
skynet.register "LOG"
|
|
end)
|