gr-wxgui: Added additional color table entries
[debian/gnuradio] / gr-wxgui / src / python / termsink.py
index 45a94e39655358282a9b010acf04087de8437323..a0cfd575d6826b2db9c7d42848ceb6c8f557d444 100644 (file)
@@ -66,7 +66,6 @@ class termsink(wx.Panel):
                # This gets called in the queue runner thread context
                # For now, just add whatever the user sends to the text control
                text = msg.to_string()
-               print "handle_msg: received", len(text), "bytes"
 
                # Create a wxPython event and post it to the event queue
                evt = AppendEvent(text)
@@ -75,5 +74,4 @@ class termsink(wx.Panel):
 
         def evt_append(self, evt):
                # This gets called by the wxPython event queue runner
-               print "appending", len(evt.text), "bytes"
                self.text_ctrl.AppendText(evt.text)