在Google App Engine Standard(Python)中创建命名日志

时间:2017-11-24 14:25:13

标签: python google-app-engine google-cloud-platform google-cloud-logging google-cloud-stackdriver

问题:无法创建命名日志

代码:

    from google.cloud import logging
    client = logging.Client()
    # client = logging.Client.from_service_account_json('credentials.json')
    logger1 = client.logger("my_new_log_1")
    logger1.log_text("hello logger 1") 
    logger2 = client.logger("my_new_log_2")
    logger2.log_text("hello logger 2") 

错误:'模块'对象没有属性' info'

此代码需要在Google App Engine Standard上运行

1 个答案:

答案 0 :(得分:0)

提供的使用示例,在" Stackdriver日志客户端库" documentation page表示在您的"记录器="之前的类似于下面的陈述; line:

要写入的日志的名称 log_name =' my-log'