Returns the tracing state, which is thread-local and initialised to `MONAIEnvVars.trace_transform() != "0"`.
(self)
| 91 | |
| 92 | @property |
| 93 | def tracing(self) -> bool: |
| 94 | """ |
| 95 | Returns the tracing state, which is thread-local and initialised to `MONAIEnvVars.trace_transform() != "0"`. |
| 96 | """ |
| 97 | self._init_trace_threadlocal() |
| 98 | return bool(self._tracing.value) |
| 99 | |
| 100 | @tracing.setter |
| 101 | def tracing(self, val: bool): |
nothing calls this directly
no test coverage detected