mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-23 11:33:09 +00:00
7 lines
154 B
Lua
7 lines
154 B
Lua
local skynet = require "skynet"
|
|
|
|
skynet.dispatch(function(message, session , from)
|
|
print("[GLOBALLOG]",session, from,message)
|
|
end)
|
|
|
|
skynet.register "LOG" |