From a792c1b941305c63e14d1ab5e75042d87c5d696e Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 24 Jul 2025 10:43:40 -0700 Subject: [PATCH] ugh --- app/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/__init__.py b/app/__init__.py index 795a69d16..339362561 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -360,7 +360,7 @@ def setup_sqlalchemy_events(app): @event.listens_for(db.engine, "connect") def connect(dbapi_connection, connection_record): - current_app.loggger.debug(f"Using {dbapi_connection} {connection_record}") + current_app.logger.debug(f"Using {dbapi_connection} {connection_record}") pass @event.listens_for(db.engine, "close") @@ -369,7 +369,7 @@ def setup_sqlalchemy_events(app): @event.listens_for(db.engine, "checkout") def checkout(dbapi_connection, connection_record, connection_proxy): - current_app.loggger.debug(f"Using {dbapi_connection} {connection_proxy}") + current_app.logger.debug(f"Using {dbapi_connection} {connection_proxy}") try: # this will overwrite any previous checkout_at timestamp @@ -452,7 +452,7 @@ def make_task(app): ) def on_failure(self, exc, task_id, args, kwargs, einfo): - current_app.loggger.debug(f"Using {einfo}") + current_app.logger.debug(f"Using {einfo}") # enables request id tracing for these logs with self.app_context():