Compare commits

...

1 Commits

Author SHA1 Message Date
claude[bot] a645772d07 fix: add SQLAlchemy to noisy_loggers to suppress deprecation warnings
Add SQLAlchemy logger to noisy_loggers dictionary with ERROR level
to suppress Python 3.13 deprecation warnings that were appearing
when users ran commands like 'bm project add'.

Co-authored-by: Drew Cain <groksrc@users.noreply.github.com>
2025-07-03 13:05:05 +00:00
+2
View File
@@ -173,6 +173,8 @@ def setup_logging(
"httpx": logging.WARNING,
# File watching logs
"watchfiles.main": logging.WARNING,
# SQLAlchemy deprecation warnings
"sqlalchemy": logging.ERROR,
}
# Set log levels for noisy loggers