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