Skip to content

Logging: InterceptHandler preserves exc_info and stack_info (should be cleared before formatting) #708

@VasuS609

Description

@VasuS609

Is there an existing issue for this?

  • I have searched the existing issues

What happened?

The InterceptHandler in backend/app/logging/setup_logging.py calls
self.format(record) while record.exc_info and record.stack_info are still set.

Python’s Formatter.format() automatically appends traceback and stack output if
these fields are truthy.

This violates the project rule that exc_info and stack_info should not be
preserved when rerouting logs.

Fix proposal:
record.exc_info = None
record.stack_info = None
msg = self.format(record)

This should be applied around lines 238–252.

Record

  • I agree to follow this project's Code of Conduct

Checklist before Submitting

  • Have you updated docs for it?
  • Have you added unit tests?
  • Have you made sure unit tests pass?
  • Have you made sure code formatting is correct?
  • Do Your changes passes all tests?

Metadata

Metadata

Assignees

Labels

backendbugSomething isn't working

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions