Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Python 从内部开发的应用程序中捕获调试事件消息。我查看win32event了 PyWin32 中的使用和其他功能。
win32event
该过程将使用 python 启动,我一直在使用subprocess.popen()它来执行此操作。
subprocess.popen()
自周一以来,我一直在研究和测试不同的方法来做到这一点,我确信有办法做到这一点,但我只是想念它。任何帮助、建议或方向将不胜感激。
也许您需要捕获 STDERR?
import sys sys.stderr = open('C:\\error_log.txt', 'w')