web-dev-qa-db-ja.com

pythonで同等のe.printStackTrace

print(e)(eは例外)が発生した例外を出力することは知っていますが、Javaのe.printStackTrace()に相当するpythonに相当するものを見つけようとしていました。それ。

Pythonのe.printStackTrace()に相当するものを教えてもらえますか?

185
koool
import traceback
traceback.print_exc()

except ...:ブロック内でこれを実行すると、自動的に現在の例外が使用されます。詳細については、 http://docs.python.org/library/traceback.html を参照してください。

259
ThiefMaster

logging.exceptionもあります。

import logging

...

try:
    g()
except Exception as ex:
    logging.exception("Something awful happened!")
    # will print this message followed by traceback

出力:

ERROR 2007-09-18 23:30:19,913 error 1294 Something awful happened!
Traceback (most recent call last):
  File "b.py", line 22, in f
    g()
  File "b.py", line 14, in g
    1/0
ZeroDivisionError: integer division or modulo by zero

(from http://blog.tplus1.com/index.php/2007/09/28/the-python-logging-module-is-much-better-than-print-statements/ 経由 プログラムを停止せずに完全なトレースバックを出力するには?

105
david.libremone

e.printStackTraceと同等のpython

Javaでは、これは次のことを行います( docs ):

public void printStackTrace()

このスロー可能オブジェクトとそのバックトレースを標準エラーストリームに出力します...

これは次のように使用されます。

try
{ 
// code that may raise an error
}
catch (IOException e)
{
// exception handling
e.printStackTrace();
}

Javaでは、標準エラーストリームはバッファリングされないため、出力はすぐに到着します。

Python 2と同じセマンティクスは次のとおりです。

import traceback
import sys
try: # code that may raise an error
    pass 
except IOError as e: # exception handling
    # in Python 2, stderr is also unbuffered
    print >> sys.stderr, traceback.format_exc()
    # in Python 2, you can also from __future__ import print_function
    print(traceback.format_exc(), file=sys.stderr)
    # or as the top answer here demonstrates, use:
    traceback.print_exc()
    # which also uses stderr.

Python 3

Python 3では、例外オブジェクトから直接トレースバックを取得できます(スレッド化されたコードの方が適切に動作する可能性が高い)。また、 stderrは行バッファリング ですが、print関数はflush引数を取得するため、これはすぐにstderrに出力されます。

    print(traceback.format_exception(None, # <- type(e) by docs, but ignored 
                                     e, e.__traceback__),
          file=sys.stderr, flush=True)

結論:

したがって、Python 3では、traceback.print_exc()sys.stderrデフォルト を使用しますが、出力をバッファリングするため、場合によっては失われる可能性があります。したがって、可能な限り同等のセマンティクスを取得するには、Python 3でflush=Trueprintを使用します。

16
Aaron Hall

他の素晴らしい答えに加えて、Python loggingライブラリのdebug()info()warning()error()critical()メソッドを使用できます。 Python 3.7.4 のドキュメントから引用

検査されるkwargsには3つのキーワード引数があります。exc_infoは、falseと評価されない場合、ログメッセージに例外情報を追加します。

つまり、Python loggingライブラリを使用してdebug()またはその他のタイプのメッセージを出力できます。また、loggingライブラリの出力にはスタックトレースが含まれます。これを念頭に置いて、次のことができます。

import logging

logger = logging.getLogger()
logger.setLevel(logging.DEBUG)

def f():
    a = { 'foo': None }
    # the following line will raise KeyError
    b = a['bar']

def g():
    f()

try:
    g()
except Exception as e:
    logger.error(str(e), exc_info=True)

そして、それは出力されます:

'bar'
Traceback (most recent call last):
  File "<ipython-input-2-8ae09e08766b>", line 18, in <module>
    g()
  File "<ipython-input-2-8ae09e08766b>", line 14, in g
    f()
  File "<ipython-input-2-8ae09e08766b>", line 10, in f
    b = a['bar']
KeyError: 'bar'
0
MikeyE