Skip to content

Commit 9d203bb

Browse files
authored
change some logs from debug to info so we can investigate expired inflights more easily (#2887)
1 parent 09ba94c commit 9d203bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/celery/tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def save_smss(self, service_id: Optional[str], signed_notifications: List[Signed
321321
try:
322322
# If the data is not present in the encrypted data then fallback on whats needed for process_job.
323323
saved_notifications = persist_notifications(verified_notifications)
324-
current_app.logger.debug(
324+
current_app.logger.info(
325325
f"Saved following notifications into db: {notification_id_queue.keys()} associated with receipt {receipt}"
326326
)
327327
if receipt:
@@ -436,7 +436,7 @@ def save_emails(self, _service_id: Optional[str], signed_notifications: List[Sig
436436
try:
437437
# If the data is not present in the encrypted data then fallback on whats needed for process_job
438438
saved_notifications = persist_notifications(verified_notifications)
439-
current_app.logger.debug(
439+
current_app.logger.info(
440440
f"Saved following notifications into db: {notification_id_queue.keys()} associated with receipt {receipt}"
441441
)
442442
if receipt:

0 commit comments

Comments
 (0)