我已经在 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
HUX布斯
相关分类