diff --git a/singer_sdk/helpers/jsonpath.py b/singer_sdk/helpers/jsonpath.py index 82c514b41..33e65c7fa 100644 --- a/singer_sdk/helpers/jsonpath.py +++ b/singer_sdk/helpers/jsonpath.py @@ -33,7 +33,7 @@ def extract_jsonpath( match: jsonpath_ng.DatumInContext matches = compiled_jsonpath.find(input) - logger.info("JSONPath matches: %d", len(matches)) + logger.info("JSONPath %s match count: %d", expression, len(matches)) for match in matches: yield match.value