]> git.llucax.com Git - software/pymin.git/commitdiff
Move logging module setup to pymind.
authorLeandro Lucarella <llucax@gmail.com>
Mon, 16 Jun 2008 21:49:15 +0000 (18:49 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 16 Jun 2008 21:49:15 +0000 (18:49 -0300)
logging module setup should go in a configuration file, but for now we
keep it in the pymind program to leave things functional until then.

config.py
pymind

index 895e51af2bc0d9e54adfa66f2685293d5c3ffc27..a2e36d7f40fc2c146ff1493ba9c802e938f4276e 100644 (file)
--- a/config.py
+++ b/config.py
@@ -1,13 +1,5 @@
 # vim: set et sts=4 sw=4 encoding=utf-8 :
 
 # vim: set et sts=4 sw=4 encoding=utf-8 :
 
-# First of all, we need to setup the logging framework
-import logging
-logging.basicConfig(
-        level   = logging.DEBUG,
-        format  = '%(asctime)s %(name)-24s %(levelname)-8s %(message)s',
-        datefmt = '%a, %d %b %Y %H:%M:%S',
-)
-
 from pymin.dispatcher import Handler
 from os.path import join
 
 from pymin.dispatcher import Handler
 from os.path import join
 
diff --git a/pymind b/pymind
index 3014539e0734fb713b7ec53e313c2b5f1a77abef..22fb0923a838b082617a6cef265475214a429a37 100755 (executable)
--- a/pymind
+++ b/pymind
@@ -3,6 +3,13 @@
 
 import sys
 import logging ; log = logging.getLogger('pymind')
 
 import sys
 import logging ; log = logging.getLogger('pymind')
+# First of all, we need to setup the logging framework
+# FIXME: this should go in a configuration file
+logging.basicConfig(
+        level   = logging.DEBUG,
+        format  = '%(asctime)s %(name)-24s %(levelname)-8s %(message)s',
+        datefmt = '%a, %d %b %Y %H:%M:%S',
+)
 
 from pymin.pymindaemon import PyminDaemon
 from pymin.dispatcher import Handler
 
 from pymin.pymindaemon import PyminDaemon
 from pymin.dispatcher import Handler