diff --git a/src/utils/logging_config.py b/src/utils/logging_config.py index ce60bb3..dc5b63e 100644 --- a/src/utils/logging_config.py +++ b/src/utils/logging_config.py @@ -85,7 +85,7 @@ def scrub_sensitive_data(record): # Scrub exception if present exception = record.get("exception") if exception: - type_, value, tb = exception + _, value, _ = exception value_str = str(value) scrubbed_value_str = _SCRUBBER.scrub(value_str)