我已经在 azure webapp 上部署了 python 代码。def main(): logging.basicConfig(filename="logtesting", filemode='a', format='%(asctime)s,%(msecs)d %(name)s %(levelname)s %(message)s', datefmt='%H:%M:%S', level=logging.DEBUG) logging.info("Main thread started...") print("Main thread started...")我尝试查看日志log stream,但看不到任何类似于我们在控制台上看到的内容。有什么设置吗?因为we do not have any option of App insight when we use python in azure webapp
1 回答
HUX布斯
TA贡献1876条经验 获得超6个赞
-更改代码以登录到控制台。
- 在应用程序服务中,单击应用程序服务日志菜单并启用应用程序日志记录。
- 您可以通过单击“日志流”菜单或在终端中使用以下命令查看门户中的日志流:
az webapp log tail --name <app-name> --resource-group <resourceGroup>
添加回答
举报
0/150
提交
取消