diff --git a/direct/src/showbase/PythonUtil.py b/direct/src/showbase/PythonUtil.py index 3cea91d27f..84a15f4208 100644 --- a/direct/src/showbase/PythonUtil.py +++ b/direct/src/showbase/PythonUtil.py @@ -130,8 +130,9 @@ def traceFunctionCall(frame): r+='=' if dict.has_key(name): v=str(dict[name]) - if len(v)>200: - r+="" + if len(v)>2000: + # r+="" + r += (str(dict[name])[:2000] + "...") else: r+=str(dict[name]) else: r+="*** undefined ***"