Supress Temperature message in log, but allow other info through

master
jezmy 2012-05-06 00:17:21 +01:00
parent dbbb51a4e0
commit 8a0e703331
1 changed files with 4 additions and 4 deletions

View File

@ -1298,10 +1298,10 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
pass
tstring=l.rstrip()
#print tstring
#if (tstring!="ok") and (tstring!="wait"):
#print "*"+tstring+"*"
#print "[" + time.strftime('%H:%M:%S',time.localtime(time.time())) + "] " + tstring
#wx.CallAfter(self.logbox.AppendText,tstring+"\n")
if (tstring!="ok") and (tstring!="wait") and ("ok T:" not in tstring):
# print "*"+tstring+"*"
# print "[" + time.strftime('%H:%M:%S',time.localtime(time.time())) + "] " + tstring
wx.CallAfter(self.logbox.AppendText,tstring+"\n")
for i in self.recvlisteners:
i(l)