From 55b56d48ab933cd48623a833e81fe705c74c320e Mon Sep 17 00:00:00 2001 From: Benjamin Adams Date: Tue, 26 Nov 2024 14:33:31 -0500 Subject: [PATCH] Suppress error message when QC xattr not found on file --- glider_qc/glider_qc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/glider_qc/glider_qc.py b/glider_qc/glider_qc.py index 196fab2..105cb27 100644 --- a/glider_qc/glider_qc.py +++ b/glider_qc/glider_qc.py @@ -604,7 +604,6 @@ def check_needs_qc(nc_path): if os.getxattr(nc_path, "user.qc_run"): return False except OSError: - log.exception(f"Exception occurred trying to get xattr at {nc_path}:") pass with Dataset(nc_path, 'r') as nc: qc = GliderQC(nc, None)