Skip to content

Commit f13e519

Browse files
committed
Enable debug and verbose logging by default in main.py to ensure consistent logging behavior during development.
1 parent 495e40f commit f13e519

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

agent-backend/src/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
app_logger.setLevel(LOG_LEVEL.upper())
1818

19-
if app_logger.getEffectiveLevel() == logging.DEBUG:
20-
set_debug(True)
21-
set_verbose(True)
19+
# disable this once LOG_LEVEL is properly imported from .env
20+
set_debug(True)
21+
set_verbose(True)
2222

2323

2424
def sigint_handler(*args):

0 commit comments

Comments
 (0)