irkerd: Replace a print statement with LOG.error
authorW. Trevor King <wking@tremily.us>
Fri, 7 Mar 2014 04:21:14 +0000 (20:21 -0800)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 11 Mar 2014 04:47:18 +0000 (00:47 -0400)
commit84ca40b2ea0d63ed1ff5f1eaa16eb4b7c7e3934d
tree64c517465fd99c490b3759d3140c832cb51faa16
parentccd311c519e349e1419c71924eac9a138cd59ada
irkerd: Replace a print statement with LOG.error

Print statements are gone in Python 3, so this removes a barrier to
Python 3 support.  It also makes the logging more consistent with
other errors (e.g. the StreamHandler will print it to stdout, while
the print statement was sending it to stderr).
irkerd