Commit 4325437c by Piotr Mitros

Timestamps in log file for bulk emails

parent fe082d62
...@@ -11,6 +11,8 @@ import mitxmako.middleware as middleware ...@@ -11,6 +11,8 @@ import mitxmako.middleware as middleware
from django.core.mail import send_mass_mail from django.core.mail import send_mass_mail
import datetime
middleware.MakoMiddleware() middleware.MakoMiddleware()
def chunks(l, n): def chunks(l, n):
...@@ -32,7 +34,7 @@ rate -- messages per second ...@@ -32,7 +34,7 @@ rate -- messages per second
log_file = None log_file = None
def hard_log(self, text): def hard_log(self, text):
self.log_file.write(text+'\n') self.log_file.write(datetime.datetime.utcnow().isoformat()+' -- '+text+'\n')
def handle(self, *args, **options): def handle(self, *args, **options):
global log_file global log_file
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment