-
-
Notifications
You must be signed in to change notification settings - Fork 123
Closed
Description
Description
Currently, multiple files in the project use broad exception handling via except Exception as e
, which can hide real issues and make debugging harder.
Affected Files:
components/chat_interface.py
(line 119)core/utils.py
(line 84)core/config.py
(line 79)components/emergency_page.py
(line 43)
Problem
Using except Exception
:
- Silently handles unexpected errors
- Makes logs less meaningful
- Can skip over bugs