created logging module

This commit is contained in:
crater2150 2013-04-15 14:27:38 +02:00
parent b241b19f44
commit b6ca62465d
2 changed files with 88 additions and 0 deletions

7
rc.lua
View file

@ -11,6 +11,13 @@ conf = require("localconf")
layouts = require('layouts')
-- {{{ Logging
log = require("simplelog")
log.add_logger(log.loggers.stdio, 0)
log.add_logger(log.loggers.naughty, 2)
-- }}}
-- {{{ Tags
tags = require('tags')