Fix script logging with name (#33120)

This commit is contained in:
Paulus Schoutsen 2020-03-22 05:29:50 -07:00 committed by GitHub
parent 66402b9b38
commit f95c3e265d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View file

@ -817,7 +817,9 @@ class Script:
def _log(self, msg, *args, level=logging.INFO):
if self.name:
msg = f"{self.name}: {msg}"
msg = f"%s: {msg}"
args = [self.name, *args]
if level == _LOG_EXCEPTION:
self._logger.exception(msg, *args)
else: