Checks common truthy string values for the SQL log flag.
Source code in src/castlecraft_engineer/database/connection.py
| def get_sql_log_level():
"""Checks common truthy string values for the SQL log flag."""
val = environ.get(ENV_ENABLE_SQL_LOG, "false").lower()
return val in ("true", "1", "yes", "on")
|