set_exception_trace_mode#
- ivy.set_exception_trace_mode(mode)[source]#
Set the mode of whether to show frontend-truncated exception stack traces, ivy- truncated exception stack traces or full exception stack traces.
Parameter#
- mode
str exeption trace mode, one of ivy, full or frontend
Examples
>>> ivy.set_exception_trace_mode("ivy") >>> ivy.get_exception_trace_mode() 'ivy'
>>> ivy.set_exception_trace_mode("full") >>> ivy.get_exception_trace_mode() 'full'
- rtype:
None