mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
23 lines
642 B
Lua
23 lines
642 B
Lua
|
-------------------------------------------------------------------------------
|
||
|
-- Prints logging information to console
|
||
|
--
|
||
|
-- @author Thiago Costa Ponte (thiago@ideais.com.br)
|
||
|
--
|
||
|
-- @copyright 2004-2011 Kepler Project
|
||
|
--
|
||
|
-------------------------------------------------------------------------------
|
||
|
|
||
|
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
|
||
|
|