[svn] commit: r3110 - /trunk/src/bin/msgq/msgq.py.in
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Oct 4 15:23:55 UTC 2010
Author: jelte
Date: Mon Oct 4 15:23:55 2010
New Revision: 3110
Log:
added a verbosity message to the startup of msgq that shows which unix domain socket file it is about to open
diff discussed on jabber, approved by jeremy
Modified:
trunk/src/bin/msgq/msgq.py.in
Modified: trunk/src/bin/msgq/msgq.py.in
==============================================================================
--- trunk/src/bin/msgq/msgq.py.in (original)
+++ trunk/src/bin/msgq/msgq.py.in Mon Oct 4 15:23:55 2010
@@ -142,6 +142,10 @@
def setup_listener(self):
"""Set up the listener socket. Internal function."""
+ if self.verbose:
+ sys.stdout.write("[b10-msgq] Setting up socket at %s\n" %
+ self.socket_file)
+
self.listen_socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
if os.path.exists(self.socket_file):
More information about the bind10-changes
mailing list