Getting logging.debug() to work on Google App Engine/Python
我刚刚开始为 Google App Engine 构建 Python 应用程序。在 localhost 环境中(在 Mac 上)
我正在尝试通过
我错过了什么?
如果有人使用 Windows Google 应用程序启动器。可以在编辑 > 应用程序设置
下设置调试参数
在额外的命令行标志中,添加 –log_level=debug
标志是
具体来说,使用以下命令行启动您的开发服务器:
1
|
dev_appserver.py –log_level debug .
|
您可以通过运行
–log_level {debug,info,warning,critical,error}
the log level below which logging messages generated
by application code will not be displayed on the
console (default: info)
使用等号(即
在 Mac 上:
1) 单击编辑 > 应用程序设置
2) 然后将以下行复制并粘贴到”Extra Flags:”字段中
–log_level=调试
3) 点击更新
您的调试日志现在将显示在日志控制台中
设置 log_level 标志的另一种方法:
1
|
logging.getLogger().handlers[0].setLevel(logging.DEBUG)
|
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267971.html