Stwórzmy dość skomplikowane śledzenie stosu, aby pokazać, że otrzymujemy pełny stos śledzenia:
def raise_error():
raise RuntimeError('something bad happened!')
def do_something_that_might_error():
raise_error()
Rejestrowanie pełnego śledzenia śledzenia
Najlepszą praktyką jest skonfigurowanie rejestratora dla modułu. Będzie znał nazwę modułu i będzie mógł zmieniać poziomy (między innymi atrybutami, takimi jak moduły obsługi)
import logging
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)
I możemy użyć tego rejestratora, aby uzyskać błąd:
try:
do_something_that_might_error()
except Exception as error:
logger.exception(error)
Które dzienniki:
ERROR:__main__:something bad happened!
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "<stdin>", line 2, in do_something_that_might_error
File "<stdin>", line 2, in raise_error
RuntimeError: something bad happened!
Otrzymujemy takie same dane wyjściowe, jak w przypadku błędu:
>>> do_something_that_might_error()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 2, in do_something_that_might_error
File "<stdin>", line 2, in raise_error
RuntimeError: something bad happened!
Uzyskiwanie tylko sznurka
Jeśli naprawdę chcesz po prostu napisu, użyj traceback.format_exc
zamiast niego funkcji, demonstrując rejestrowanie napisu tutaj:
import traceback
try:
do_something_that_might_error()
except Exception as error:
just_the_string = traceback.format_exc()
logger.debug(just_the_string)
Które dzienniki:
DEBUG:__main__:Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "<stdin>", line 2, in do_something_that_might_error
File "<stdin>", line 2, in raise_error
RuntimeError: something bad happened!
log_error(err)
funkcję.