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>
This commit is contained in:
claude[bot]
2025-07-03 13:05:05 +00:00
committed by GitHub
parent 23ddf1918c
commit a645772d07
+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