From e8464207289c7f1282277f238fbe070565578b1f Mon Sep 17 00:00:00 2001 From: crater2150 Date: Mon, 4 Apr 2016 14:59:55 +0200 Subject: [PATCH] Move simplelog lib to separable --- rc.lua | 2 +- simplelog.lua => separable/simplelog.lua | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename simplelog.lua => separable/simplelog.lua (100%) diff --git a/rc.lua b/rc.lua index 59ae1f7..da37e95 100644 --- a/rc.lua +++ b/rc.lua @@ -10,7 +10,7 @@ inspect = require("lib.inspect") -- }}} -- {{{ Logging -log = require("simplelog") +log = require("separable.simplelog") log.add_logger(log.loggers.stdio, log.level.DEBUG) log.add_logger(log.loggers.naughty, log.level.WARNING) -- }}} diff --git a/simplelog.lua b/separable/simplelog.lua similarity index 100% rename from simplelog.lua rename to separable/simplelog.lua