Thie makes logging more consistent with other errors (e.g. you can
adjust the logging Handler and get all the errors sent to syslog or a
file). I also removed the 'irkerd: ' prefix; if we want that, I think
we should add it to all logged messages by using a custom string in
the logging Formatter.
except KeyboardInterrupt:
raise SystemExit(1)
except socket.error, e:
- sys.stderr.write("irkerd: server launch failed: %r\n" % e)
+ LOG.error("server launch failed: %r\n" % e)
# end