X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fdaklog.py;h=b278721a48405d34a36bacd81e449b63e6f42eaf;hb=7e692c9288506bd931232ae14987febb6ea8ecfb;hp=dfcae368089f0c1d2a0d2e56b9e6e8fa218c6d6a;hpb=883c0aba045a0818317795a5bb1aacad56e8775d;p=dak.git diff --git a/daklib/daklog.py b/daklib/daklog.py old mode 100755 new mode 100644 index dfcae368..b278721a --- a/daklib/daklog.py +++ b/daklib/daklog.py @@ -32,33 +32,54 @@ import utils ################################################################################ -class Logger: +class Logger(object): "Logger object" - Cnf = None - logfile = None - program = None + __shared_state = {} - def __init__ (self, Cnf, program, debug=0): + def __init__(self, *args, **kwargs): + self.__dict__ = self.__shared_state + + if not getattr(self, 'initialised', False): + from daklib.config import Config + self.initialised = True + + # To be backwards compatibile, dump the first argument if it's a + # Config object. TODO: Fix up all callers and remove this + if len(args) > 0 and isinstance(args[0], Config): + args=list(args).pop(0) + + self.__setup(*args, **kwargs) + + + def __setup(self, program='unknown', debug=False, print_starting=True, include_pid=False): "Initialize a new Logger object" - self.Cnf = Cnf self.program = program + self.debug = debug + self.include_pid = include_pid + # Create the log directory if it doesn't exist - logdir = Cnf["Dir::Log"] + from daklib.config import Config + logdir = Config()["Dir::Log"] if not os.path.exists(logdir): umask = os.umask(00000) os.makedirs(logdir, 02775) os.umask(umask) + # Open the logfile logfilename = "%s/%s" % (logdir, time.strftime("%Y-%m")) logfile = None + if debug: logfile = sys.stderr else: umask = os.umask(00002) logfile = utils.open_file(logfilename, 'a') os.umask(umask) + self.logfile = logfile - self.log(["program start"]) + + if print_starting: + self.log(["program start"]) def log (self, details): "Log an event"