mirror of https://github.com/Delgan/loguru.git
34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
|
|
Traceback (most recent call last):
|
|
> File "tests/exceptions/source/backtrace/chaining_first.py", line 26, in <module>
|
|
a_decorated()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 11, in a_decorated
|
|
b()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 19, in b
|
|
c()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 23, in c
|
|
1 / 0
|
|
ZeroDivisionError: division by zero
|
|
|
|
Traceback (most recent call last):
|
|
> File "tests/exceptions/source/backtrace/chaining_first.py", line 30, in <module>
|
|
a_not_decorated()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 15, in a_not_decorated
|
|
b()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 19, in b
|
|
c()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 23, in c
|
|
1 / 0
|
|
ZeroDivisionError: division by zero
|
|
|
|
Traceback (most recent call last):
|
|
> File "tests/exceptions/source/backtrace/chaining_first.py", line 33, in <module>
|
|
a_not_decorated()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 15, in a_not_decorated
|
|
b()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 19, in b
|
|
c()
|
|
File "tests/exceptions/source/backtrace/chaining_first.py", line 23, in c
|
|
1 / 0
|
|
ZeroDivisionError: division by zero
|