]> git.llucax.com Git - software/pymin.git/blobdiff - pymind
Move logging module setup to pymind.
[software/pymin.git] / pymind
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')
+# 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