g****a 发帖数: 1304 | 1 如何实现一个myprint(x)能显示出filename,lineno,then x,类似于__file__ and __
line__。用了个currentframe(), 显示的是myprint()所在文件和所在行。。。 | w****w 发帖数: 521 | 2 加个logger handler, module和lineno对应__file__和__line__:
formatter = logging.Formatter('%(asctime)st%(levelname)st%(module)st%(lineno
)st%(message)s')
handler.setFormatter(formatter)
【在 g****a 的大作中提到】 : 如何实现一个myprint(x)能显示出filename,lineno,then x,类似于__file__ and __ : line__。用了个currentframe(), 显示的是myprint()所在文件和所在行。。。
|
|