Add logger info for Boxcar2 notification sent

This commit is contained in:
Jonathan Wong 2015-12-15 19:56:14 -08:00
parent b21c50dfcf
commit 18682c7a2e

View file

@ -1291,6 +1291,7 @@ class BOXCAR(object):
req = urllib2.Request(self.url) req = urllib2.Request(self.url)
handle = urllib2.urlopen(req, data) handle = urllib2.urlopen(req, data)
handle.close() handle.close()
logger.info(u"Boxcar2 notifications sent.")
return True return True
except urllib2.URLError as e: except urllib2.URLError as e: