Browse Source

add spam score processing time for forward phase

Son NK 4 năm trước cách đây
mục cha
commit
0bb10d8fc3
1 tập tin đã thay đổi với 8 bổ sung1 xóa
  1. 8 1
      email_handler.py

+ 8 - 1
email_handler.py

@@ -446,8 +446,15 @@ async def forward_email_to_mailbox(
     is_spam = False
 
     if SPAMASSASSIN_HOST:
+        start = time.time()
         spam_score = await get_spam_score(msg)
-        LOG.d("%s -> %s  spam score %s", contact, alias, spam_score)
+        LOG.d(
+            "%s -> %s - spam score %s in %s seconds",
+            contact,
+            alias,
+            spam_score,
+            time.time() - start,
+        )
         email_log.spam_score = spam_score
         db.session.commit()