タグ付けされた質問 「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
node.jsスタックエラーで10行を超える?
node.jsスタックエラーで10行を超える方法はありますか? function a() { dieInHell(); } function b() { a(); } function c() { b(); } function d() { c(); } function e() { d(); } function f() { e(); } function g() { f(); } function h() { g(); } function i() { h(); } function j() { i(); …

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 instantiate class named NSLayoutConstraint' *** First throw call stack: (0x3758288f 0x35287259 0x37582789 0x375827ab 0x3153d54d 0x3153d6bb 0x3153d423 0x314ce001 0x3143c3c7 …


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 load memtrack module: -2 E/libEGL(931) …


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.