OpenWrt_Luci_Lua/Mi_Lua/logging/console.lua

21 lines
555 B
Lua
Raw Normal View History

2015-05-09 10:48:46 +00:00
-------------------------------------------------------------------------------
-- Prints logging information to console
--
-- @author Thiago Costa Ponte (thiago@ideais.com.br)
--
-- @copyright 2004-2013 Kepler Project
--
-------------------------------------------------------------------------------
local logging = require"logging"
function logging.console(logPattern)
return logging.new( function(self, level, message)
io.stdout:write(logging.prepareLogMsg(logPattern, os.date(), level, message))
return true
end)
end
return logging.console