add number of notifications processed

This commit is contained in:
Kenneth Kehl
2025-01-02 11:07:20 -08:00
parent f8e30f80b8
commit e2d64c0738

View File

@@ -777,5 +777,6 @@ def dao_update_delivery_receipts(receipts, delivered):
db.session.commit()
elapsed_time = (time() * 1000) - start_time_millis
current_app.logger.info(
f"#loadtestperformance batch update query time: {elapsed_time} ms"
f"#loadtestperformance batch update query time: \
updated {len(receipts)} notification in {elapsed_time} ms"
)