Mar 05 2026: implement Verification queue, fix logger error

This commit is contained in:
2026-03-05 09:29:32 -05:00
parent fe393b6cba
commit 2e1e670fab
+1 -1
View File
@@ -543,7 +543,7 @@ def verification_queue():
# Sort facilities alphabetically # Sort facilities alphabetically
grouped = sorted(by_facility.items(), key=lambda x: x[0].name) grouped = sorted(by_facility.items(), key=lambda x: x[0].name)
logger.info( current_app.logger.info(
'VERIFICATION QUEUE VIEWED | user=%s | pending_count=%s', 'VERIFICATION QUEUE VIEWED | user=%s | pending_count=%s',
current_user.username, len(pending), current_user.username, len(pending),
) )