[actions] fix exception when 'msg' is not a string (#5683)

pull/3626/merge
Mike Fährmann 3 months ago
parent 4727ad6f57
commit 9671bd6d40
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -105,6 +105,7 @@ class LoggerAdapterActions():
self.error = functools.partial(self.log, logging.ERROR)
def log(self, level, msg, *args, **kwargs):
msg = str(msg)
if args:
msg = msg % args

Loading…
Cancel
Save