Skip to content

Commit e8e88a3

Browse files
committed
fix: log linting errors
1 parent e446053 commit e8e88a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conda_forge_feedstock_ops/lint.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ def _lint_local(feedstock_dir):
111111
str(recipe_dir), conda_forge=True, return_hints=True
112112
)
113113
_error = False
114-
except Exception:
114+
except Exception as e:
115+
logger.error("Error linting recipe %s", recipe, exc_info=e)
115116
_lints = []
116117
_hints = []
117118
_error = True

0 commit comments

Comments
 (0)