소스 검색

added note about StackTrace not being a crash

Darren Ranalli 19 년 전
부모
커밋
6cf3110653
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      direct/src/showbase/PythonUtil.py

+ 1 - 0
direct/src/showbase/PythonUtil.py

@@ -129,6 +129,7 @@ class StackTrace:
             self.label, len(self.trace),)
             self.label, len(self.trace),)
         for i in traceback.format_list(self.trace):
         for i in traceback.format_list(self.trace):
             r+=i
             r+=i
+        r+="***** NOTE: This is not a crash. This is a debug stack trace. *****"
         return r
         return r
 
 
 #-----------------------------------------------------------------------------
 #-----------------------------------------------------------------------------