How to record call stack log implementation method in Python?

伊谢尔伦
Release: 2017-06-28 13:48:49
Original
1529 people have browsed it

This article mainly introduces the method ofPythonto record detailed call stack logs, involving related skills of Python call stack logs. It has certain reference value. Friends who need it can refer to it

The example in this article describes how Python records detailed call stack logs. Share it with everyone for your reference. The specific implementation method is as follows:

import sys import os def detailtrace(info): retStr = "" curindex=0 f = sys._getframe() f = f.f_back # first frame is detailtrace, ignore it while hasattr(f, "f_code"): co = f.f_code retStr = "%s(%s:%s)->"%(os.path.basename(co.co_filename), co.co_name, f.f_lineno) + retStr f = f.f_back print retStr+info def foo(): detailtrace("hello world") def bar(): foo() def main(): bar() if name == "main": main()
Copy after login

Output:

aaa1.py(<module>:27)->aaa1.py(main:24)- >aaa1.py(bar:21)->aaa1.py(foo:18)->hello world

The above is the detailed content of How to record call stack log implementation method in Python?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!