使用请求数据记录所有Cloud Endpoint请求

时间:2016-02-10 08:29:27

标签: python google-app-engine google-cloud-endpoints

我想在Python App Engine上记录所有Google Cloud Endpoints请求。 标准日志记录机制仅记录请求发生的情况,但不记录数据或标头。

是否有可能自动记录这些数据,或者我是否必须坚持手动记录每个请求的数据?

1 个答案:

答案 0 :(得分:0)

您可以执行以下操作:

import logging

@endpoints.api(args)
class YourApi(remote.Service):
    """Your API
    """
    @endpoints.method(args)
    def a_method(self, request):
        logging.info(request)

Documentation.