Fix log debug call (#3528)

This commit is contained in:
Carlos Mocholí 2020-09-17 22:36:44 +02:00 committed by GitHub
parent 8be79a9a96
commit a9c0ed920a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def _info(*args, **kwargs):
def _debug(*args, **kwargs):
log.info(*args, **kwargs)
log.debug(*args, **kwargs)
rank_zero_debug = rank_zero_only(_debug)