oe-build-perf-test: align log message format with testrunner output

The previous attempt on this was a bit erroneous, dropping time stamps
completely although only the timestamp format should've been changed.

(From OE-Core rev: bafcff95e2b5e0b9a8c76ce46a62667bf6f49b00)

Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Markus Lehtonen 2016-08-19 16:01:33 +03:00 committed by Richard Purdie
parent f019bb933f
commit b26c43c13e
1 changed files with 4 additions and 2 deletions

View File

@ -34,7 +34,9 @@ from oeqa.utils.commands import runCmd
# Set-up logging
logging.basicConfig(level=logging.INFO, format='%(levelname)s: %(message)s')
LOG_FORMAT = '[%(asctime)s] %(levelname)s: %(message)s'
logging.basicConfig(level=logging.INFO, format=LOG_FORMAT,
datefmt='%Y-%m-%d %H:%M:%S')
log = logging.getLogger()
@ -75,7 +77,7 @@ def setup_file_logging(log_file):
log_dir = os.path.dirname(log_file)
if not os.path.exists(log_dir):
os.makedirs(log_dir)
formatter = logging.Formatter('[%(asctime)s] %(levelname)s: %(message)s')
formatter = logging.Formatter(LOG_FORMAT)
handler = logging.FileHandler(log_file)
handler.setFormatter(formatter)
log.addHandler(handler)