You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
261 B
Lua

local server = require "log.writer.async._private.server"
local M = {}
M.run = function(host, port, maker, logformat)
logformat = logformat or "log.logformat.default"
server.run("log.writer.net.server.udp", maker, logformat, host, port)
end
return M