We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c2c3b commit 103f100Copy full SHA for 103f100
perfkitbenchmarker/vm_util.py
@@ -387,7 +387,9 @@ def WrappedFunction(*args, **kwargs):
387
raise RetriesExceededRetryError() from e
388
else:
389
if log_errors:
390
- logging.info('Retrying exception running %s: %s', f.__name__, e)
+ logging.info(
391
+ 'Retrying exception running %s: %s', f.__qualname__, repr(e)
392
+ )
393
time.sleep(sleep_time)
394
395
return WrappedFunction
0 commit comments