Example #1
0
 def bail():
     log.critical("ABORTING: {0}", msg)
     self.halt()
Example #2
0
 def handle_cannot_bind(self, reason):
     log.critical("service at {0}:{1} cannot bind: {2}", self.iface or '*',
                  self.port, reason)
     raise
Example #3
0
File: app.py Project: wmoss/diesel
 def handle_cannot_bind(self, reason):
     log.critical("service at %s:%s cannot bind: %s" %
                  (self.iface or '*', self.port, reason))
     raise
Example #4
0
 def handle_cannot_bind(self, reason):
     log.critical("service at %s:%s cannot bind: %s" % (self.iface or '*', 
             self.port, reason))
     raise
Example #5
0
File: app.py Project: 1angxi/diesel
 def bail():
     log.critical("ABORTING: {0}", msg)
     self.halt()
Example #6
0
File: app.py Project: 1angxi/diesel
 def handle_cannot_bind(self, reason):
     log.critical("service at {0}:{1} cannot bind: {2}",
         self.iface or '*', self.port, reason)
     raise