Add timestamps to program.log and dnf.log

In lorax, lorax-composer, and livemedia-creator.
This commit is contained in:
Brian C. Lane 2018-12-19 12:13:24 -08:00
parent 3d1d79eea5
commit fd173f7265
3 changed files with 8 additions and 0 deletions

View File

@ -429,6 +429,8 @@ def setup_logging(logfile, theLogger):
f = os.path.abspath(os.path.dirname(logfile))+"/program.log"
fh = logging.FileHandler(filename=f, mode="w")
fh.setLevel(logging.DEBUG)
fmt = logging.Formatter("%(asctime)s %(levelname)s: %(message)s")
fh.setFormatter(fmt)
program_log.addHandler(fh)

View File

@ -45,6 +45,8 @@ def setup_logging(opts):
logfile = os.path.abspath(os.path.dirname(opts.logfile))+"/dnf.log"
fh = logging.FileHandler(filename=logfile, mode="w")
fh.setLevel(logging.NOTSET)
fmt = logging.Formatter("%(asctime)s %(levelname)s: %(message)s")
fh.setFormatter(fmt)
dnf_log.addHandler(fh)
# Setup librepo logging

View File

@ -69,6 +69,8 @@ def setup_logging(logfile):
logfile = os.path.abspath(os.path.dirname(logfile))+"/program.log"
fh = logging.FileHandler(filename=logfile)
fh.setLevel(logging.DEBUG)
fmt = logging.Formatter("%(asctime)s %(levelname)s: %(message)s")
fh.setFormatter(fmt)
program_log.addHandler(fh)
# Server request logging
@ -83,6 +85,8 @@ def setup_logging(logfile):
logfile = os.path.abspath(os.path.dirname(logfile))+"/dnf.log"
fh = logging.FileHandler(filename=logfile)
fh.setLevel(logging.DEBUG)
fmt = logging.Formatter("%(asctime)s %(levelname)s: %(message)s")
fh.setFormatter(fmt)
dnf_log.addHandler(fh)