Browse Source

longer printout length per garbage item repr

Darren Ranalli 19 years ago
parent
commit
d9d54a75fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/showbase/GarbageReport.py

+ 1 - 1
direct/src/showbase/GarbageReport.py

@@ -163,7 +163,7 @@ class GarbageReport(TaskThreaded):
                     for i in xrange(self.index, self.numGarbage):
                         id = self.garbageIds[i]
                         objStr = safeRepr(self.parent.garbage[id])
-                        maxLen = 500
+                        maxLen = 5000
                         if len(objStr) > maxLen:
                             snip = '<SNIP>'
                             objStr = '%s%s' % (objStr[:(maxLen-len(snip))], snip)