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 应用程序,使其生成包含必要动态信息的跟踪文件。我正在使用 python 脚本来检测源代码。我通过在源代码中插入大量语句并连续生成跟踪文件来实现。
我的问题是,有没有办法使用调试器来生成跟踪文件?
如果是这样,谁能给我一个例子,说明在调试期间如何在任何函数中插入打印语句?
为此,您可以使用 Python 跟踪模块。它显示所有正在运行的代码
从代码中的某个点跟踪所有语句
您也可以插入打印语句,但是您必须记住事后清理它们。逗号分隔您要打印的参数。
print 'logpoint 1, vals: ', vals