From a2683430b81b7f5acd4cdd40f02edb5e90386584 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Wed, 23 May 2012 09:20:45 +0200 Subject: [PATCH] Output numeric and data on chunk processing --- distribution-server/dist-daemon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution-server/dist-daemon b/distribution-server/dist-daemon index d930c68..a462090 100755 --- a/distribution-server/dist-daemon +++ b/distribution-server/dist-daemon @@ -45,7 +45,7 @@ class Client: data = chunk[2:] channel_numeric = to_numeric(channel_identifier) - print channel_numeric + print "Received data on channel %d: %s" % (channel_numeric, data) bindsocket = socket.socket() bindsocket.bind(('0.0.0.0', 9151))