更具体一点:
logging.info(msg)
。 不需要django。任何框架都可以,甚至是一个python库。
答案 0 :(得分:0)
logging
模块是内置的Python,不仅适用于Google App Engine。
您想要的只是使用logging.basicConfig()
import logging
logging.basicConfig(level=logging.DEBUG)
logging.debug('This message should go to the log file')
logging.info('So should this')
logging.warning('And this, too')
,输出将如下:
DEBUG:root:This message should go to the log file
INFO:root:So should this
WARNING:root:And this, too
用于集成到管理面板它是变化的并且取决于您正在使用的框架,您可以向file
添加一个参数basicConfig
请求日志模块将日志保存到文件中,然后您可以读取它并在Django中解析它
logging.basicConfig(file="admin.log",level=logging.DEBUG)
是你想要的吗?