Files
skynet/service/globallog.lua
2012-08-09 15:36:56 +08:00

8 lines
188 B
Lua

local skynet = require "skynet"
skynet.dispatch(function(msg, sz , session , from)
local message = skynet.tostring(msg,sz)
print("[GLOBALLOG]", from,message)
end)
skynet.register "LOG"