1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00

even nicer logging :-)

This commit is contained in:
Seth Schoen
2012-08-13 00:42:06 -07:00
parent 57a48d1c1d
commit 4847670654

View File

@@ -329,7 +329,8 @@ class session(object):
self.kill()
r.failure.cause = reason
if uri: r.failure.URI = uri
self.log("Session from %s died for reason %s" % (web.ctx.ip, str(r.failure).split(":")[0].strip()))
self.log("from: %s" % web.ctx.ip)
self.log("died: %s" % str(r.failure).split(":")[1].strip())
if uri: self.log("error URI: %s" % uri)
def handleclientfailure(self, m, r):