TIL how to stop logfire from spamming the console when instrumenting #SQLite: set `min_log_level` in https://logfire.pydantic.dev/docs/reference/api/logfire/#logfire.ConsoleOptions.
1. `logfire.configure(token=LOGFIRE_TOKEN, environment=ENVIRONMENT, console=logfire.ConsoleOptions(min_log_level="warning”))`.
2. Call `logfire.instrument_sqlite3()`.
3. Bask in the radiant glow of a blank screen that is not filled with "BEGIN”, “SELECT”, "COMMIT" over and over again.
