6 @contact: Debian FTP Master <ftpmaster@debian.org>
7 @copyright: 2001, 2002, 2006 James Troup <james@nocrew.org>
8 @license: GNU General Public License version 2 or later
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 ################################################################################
33 ################################################################################
41 def __init__ (self, Cnf, program, debug=0, print_starting=True):
42 "Initialize a new Logger object"
44 self.program = program
45 # Create the log directory if it doesn't exist
46 logdir = Cnf["Dir::Log"]
47 if not os.path.exists(logdir):
48 umask = os.umask(00000)
49 os.makedirs(logdir, 02775)
52 logfilename = "%s/%s" % (logdir, time.strftime("%Y-%m"))
57 umask = os.umask(00002)
58 logfile = utils.open_file(logfilename, 'a')
60 self.logfile = logfile
62 self.log(["program start"])
64 def log (self, details):
66 # Prepend timestamp, program name, and user name
67 details.insert(0, utils.getusername())
68 details.insert(0, self.program)
69 timestamp = time.strftime("%Y%m%d%H%M%S")
70 details.insert(0, timestamp)
71 # Force the contents of the list to be string.join-able
72 details = [ str(i) for i in details ]
73 # Write out the log in TSV
74 self.logfile.write("|".join(details)+'\n')
75 # Flush the output to enable tail-ing
79 "Close a Logger object"
80 self.log(["program end"])