有兴趣分享您对 Google Ads API 的反馈吗?
注册即可获邀参与用户调研!
日志记录
PHP 客户端库符合 PSR-3 的日志记录规范,并为 gRPC 调用提供日志记录器。
消息的记录级别取决于事件是否成功。
日志消息 |
成功状态 |
失败状态 |
摘要(放在一行中) |
信息 |
警告 |
调试消息(例如,调用查询) |
DEBUG |
通知 |
配置日志记录
默认情况下,每个库记录器都会使用 Monolog StreamHandler 将日志记录到 此处指定的默认名称的渠道上的 STDERR
。
您可以在 google_ads_php.ini
文件中为默认日志记录器配置一些选项:
[LOGGING] ; 可选日志记录设置。logFilePath = "path/to/your/file.log"
logLevel = "INFO"
如果您需要进一步自定义日志记录,可以通过提供在 GoogleAdsClientBuilder
中实现 LoggerInterface
的日志记录器,完全指定自己的日志记录器:
$googleAdsClient = (new GoogleAdsClientBuilder())
...
->withLogger(new MyCustomLogger())
->build();
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-11-09。
[null,null,["最后更新时间 (UTC):2024-11-09。"],[[["The PHP client library uses PSR-3 for logging gRPC calls, with log levels varying based on success or failure of the event."],["By default, logs are written to `STDERR` using a Monolog StreamHandler with configurable options in the `google_ads_php.ini` file."],["For advanced customization, developers can implement the `LoggerInterface` and provide their own logger to the `GoogleAdsClientBuilder`."],["Logging is currently not supported for REST calls."]]],[]]