pronterface.py: repeat messages from printer only in non-verbose mode.

master
Markus Hitter 2012-08-13 00:07:24 +02:00
parent 70b6887928
commit 351df958cb
1 changed files with 1 additions and 1 deletions

View File

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