我想在Python App Engine上记录所有Google Cloud Endpoints请求。 标准日志记录机制仅记录请求发生的情况,但不记录数据或标头。
是否有可能自动记录这些数据,或者我是否必须坚持手动记录每个请求的数据?
答案 0 :(得分:0)
您可以执行以下操作:
import logging
@endpoints.api(args)
class YourApi(remote.Service):
"""Your API
"""
@endpoints.method(args)
def a_method(self, request):
logging.info(request)