Add timstamp to logs

This commit is contained in:
Jochen Sprickerhof 2020-07-04 18:56:10 +02:00
parent 174bbf0bdc
commit d8b73dd241
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ def main():
quiet = any(s in sys.argv for s in ['-q', '--quiet'])
# Helpful to differentiate warnings from errors even when on quiet
logformat = '%(levelname)s: %(message)s'
logformat = '%(asctime)s %(levelname)s: %(message)s'
loglevel = logging.INFO
if verbose:
loglevel = logging.DEBUG