我们如何向Log API发送查询,以便它只从前端而不是后端检索日志?
答案 0 :(得分:1)
我不知道你问的是什么运行时,但是查看SDK 1.8.8的Python源代码,你有google.appengine.api.logservice.fetch
函数的以下参数:
module_versions: A list of tuples of the form (module, version), that
indicate that the logs for the given module/version combination should be
fetched. Duplicate tuples will be ignored. This kwarg may not be used
in conjunction with the 'version_ids' kwarg.
(这尚未反映在Google Developers site)
中这并不意味着您可以直接访问前端日志,但如果您convert your app使用后端使用两个命名模块,一个用于前端请求,另一个用于后端工作,您将能够单独获取每个日志。