I used IronPython V2.7.12 on WPF.
If I operate the code below, the message is printed well.
import logging
logging.warning("warning message")
logging.error("error message")
But the following exceptions occur:
Exception Traceback (most recent call last):
File "...\Lib\threading.py", line 1101, in _exitfunc
File "...\Lib\threading.py", line 893, in _Thread__delete
KeyError: 26 ignored
Can I ignore messages?
Development Environment
- VS 2022 on Windows 10
- .NET Framework 4.7.2
I used IronPython V2.7.12 on WPF.
If I operate the code below, the message is printed well.
But the following exceptions occur:
Can I ignore messages?
Development Environment