/usr/share/pyshared/cobbler/clogger.py is in python-cobbler 2.2.2-0ubuntu33.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | """
Python standard logging doesn't super-intelligent and won't expose filehandles,
which we want. So we're not using it.
Copyright 2009, Red Hat, Inc
Michael DeHaan <mdehaan@redhat.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
"""
import time
import os
ERROR = "ERROR"
WARNING = "WARNING"
DEBUG = "DEBUG"
INFO = "INFO"
class Logger:
def __init__(self, logfile="/var/log/cobbler/cobbler.log"):
self.logfile = None
# Main logfile is append mode, other logfiles not.
if not os.path.exists(logfile) and os.path.exists(os.path.dirname(logfile)):
self.logfile = open(logfile, "a")
self.logfile.close()
try:
self.logfile = open(logfile, "a")
except IOError:
# You likely don't have write access, this logger will just print
# things to stdout.
pass
def warning(self, msg):
self.__write(WARNING, msg)
def error(self, msg):
self.__write(ERROR, msg)
def debug(self, msg):
self.__write(DEBUG, msg)
def info(self, msg):
self.__write(INFO, msg)
def flat(self, msg):
self.__write(None, msg)
def __write(self, level, msg):
if level is not None:
msg = "%s - %s | %s" % (time.asctime(), level, msg)
if self.logfile is not None:
self.logfile.write(msg)
self.logfile.write("\n")
self.logfile.flush()
else:
print(msg)
def handle(self):
return self.logfile
def close(self):
self.logfile.close()
|