«stack-trace» 태그된 질문

프로그램 실행 중 특정 시점의 활성 스택 프레임에 대한 보고서입니다.

3
Python에서 호출 함수 모듈의 __name__ 가져 오기
다음을 myapp/foo.py포함 한다고 가정 합니다. def info(msg): caller_name = ???? print '[%s] %s' % (caller_name, msg) 다음을 myapp/bar.py포함합니다. import foo foo.info('Hello') # => [myapp.bar] Hello 이 경우 호출 함수 모듈 ( 'myapp.foo') caller_name의 __name__속성 으로 설정 하고 싶습니다 . 어떻게 할 수 있습니까?


4
presentViewController : iOS <6 (AutoLayout)에서 충돌
이것은 내가 얻는 이상한 충돌입니다. 특정 ViewController로 이동하는 버튼을 누르면 충돌이 발생합니다. 충돌하는 줄은 다음과 같습니다. DestinationInformationViewController *info = [[DestinationInformationViewController alloc] init]; [info setModalTransitionStyle: UIModalTransitionStyleCrossDissolve]; [self presentViewController:info animated:YES completion: nil]; // CRASHES HERE [info release]; 충돌 추적은 다음과 같습니다. *** Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: 'Could not …


5
memtrack 모듈을로드 할 수 없습니다. Logcat 오류
Couldn't load memtrack module (No such file or directory) failed to load memtrack module: -2런타임에 오류가 발생 합니다. StackTrace 오류 : E/SoundPool(1280) : error loading /system/media/audio/ui/Effect_Tick.ogg E/SoundPool(1280) : error loading /system/media/audio/ui/KeypressStandard.ogg E/SurfaceFlinger(931) : glCheckFramebufferStatusOES error 733995180 E/memtrack(1873) : Couldn't load memtrack module (No such file or directory) E/android.os.Debug(1873): failed to …



5
Xcode 전체 스택 추적
어쨌든 디버깅은 전체 스택 추적을 볼 수있는 동안 메인 스레드에서 호출 된 메서드 목록입니다. 또는 명령 창에서 인쇄하는 방법.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.