mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user