aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Hasenack <andreas@mandriva.com>2006-08-18 22:15:55 +0000
committerAndreas Hasenack <andreas@mandriva.com>2006-08-18 22:15:55 +0000
commit6afb142d0029587544e99ed413d813499630b553 (patch)
tree15c27819ea04d05355be41f66ffde72e1bce185b
parent2d46618681da4951b35a0ad20567f7c6d17f5179 (diff)
downloadmgarepo-6afb142d0029587544e99ed413d813499630b553.tar
mgarepo-6afb142d0029587544e99ed413d813499630b553.tar.gz
mgarepo-6afb142d0029587544e99ed413d813499630b553.tar.bz2
mgarepo-6afb142d0029587544e99ed413d813499630b553.tar.xz
mgarepo-6afb142d0029587544e99ed413d813499630b553.zip
- logging module
-rw-r--r--RepSys/util.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/RepSys/util.py b/RepSys/util.py
index 5612029..3946608 100644
--- a/RepSys/util.py
+++ b/RepSys/util.py
@@ -2,8 +2,11 @@
from RepSys import Error, config
import getpass
import sys, os
+import logging
#import commands
+log = logging.getLogger("repsys")
+
# Our own version of commands' getstatusoutput(). We have a commands
# module directory, so we can't import Python's standard module
def commands_getstatusoutput(cmd):