Browse Source

ignore spammy event-loop-done

David Rose 17 years ago
parent
commit
6b7ab70359
1 changed files with 4 additions and 1 deletions
  1. 4 1
      direct/src/showbase/Messenger.py

+ 4 - 1
direct/src/showbase/Messenger.py

@@ -41,7 +41,10 @@ class Messenger:
         # want this in a release build.  If you're sure that that will not be
         # want this in a release build.  If you're sure that that will not be
         # then please remove this comment and put the quiet/verbose stuff
         # then please remove this comment and put the quiet/verbose stuff
         # under __debug__.
         # under __debug__.
-        self.quieting={"NewFrame":1, "avatarMoving":1} # see def quiet()
+        self.quieting={"NewFrame":1,
+                       "avatarMoving":1,
+                       "event-loop-done":1,
+                       } # see def quiet()
 
 
     def _getMessengerId(self, object):
     def _getMessengerId(self, object):
         # TODO: allocate this id in DirectObject.__init__ and get derived
         # TODO: allocate this id in DirectObject.__init__ and get derived