Skip to content

Commit

Permalink
data_cloud: remove logger check
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed Jul 5, 2022
1 parent 954de0c commit eed6a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dvc/data_cloud.py
Expand Up @@ -64,7 +64,7 @@ def _init_odb(self, name):
return get_odb(cls(**config), fs_path, **config)

def _log_missing(self, status: "CompareStatusResult"):
if status.missing and logger.isEnabledFor(logging.WARNING):
if status.missing:
missing_desc = "\n".join(
f"name: {hash_info.obj_name}, {hash_info}"
for hash_info in status.missing
Expand Down

0 comments on commit eed6a84

Please sign in to comment.