Commit 8a0e7033 authored by jezmy's avatar jezmy

Supress Temperature message in log, but allow other info through

parent dbbb51a4
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment