执行日志
Google Ads 脚本会在预览模式和实际执行中显示两种类型的执行日志:更改日志和日志输出。
- 更改日志
更改日志会显示脚本对 Google Ads 实体执行的所有更改:实体说明、更改类型、更改前后的值和错误(如果有):
您也可以进一步过滤更改日志,使其只显示错误。
- 日志输出
如果您在脚本中执行 console.log("Hello world!");
,日志中会显示“Hello world!”。记录少量文本在调试期间特别有用,但在实时执行期间通常也很有用。假设您安排每天运行下列脚本:
let spreadsheet = SpreadsheetApp.create("Daily Report");
// Populate the spreadsheet.
// ...
console.log("Daily report ready!");
console.log(spreadsheet.getUrl());
每次执行时,该脚本都会记录新创建的电子表格的网址,方便以后查找。您还可以使用 console.warn()
或 console.error()
在日志中记录橙色或红色文本。
除了程序员指定的日志消息之外,Google Ads 脚本在执行期间遇到的错误和警告也会显示在文本日志中。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-11-05。
[null,null,["最后更新时间 (UTC):2024-11-05。"],[[["Google Ads scripts provide two types of execution logs: Changes logs (tracking entity modifications) and Logs output (displaying script messages)."],["Changes logs detail all alterations made by the script to Google Ads entities, including before and after values, and can be filtered to show only errors."],["Logs output displays messages generated by the script using `console.log`, `console.warn`, and `console.error`, useful for debugging and providing context during live executions."],["Errors and warnings encountered by scripts during execution are automatically included in the text logs for troubleshooting."]]],[]]