2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

clasp logs でログを確認する。2018-09-26

Posted at

概要

clasp run しても Logger.log の内容は表示されませんでした
ログを確認したいときは clasp logs で確認します。

その方法を記します。

ポイント

clasp logs でも Logger.log の内容は確認できないようです
clasp logs でログを確認したいときは、 console.log でログを書き出します

clasp logs

実行結果例 console.log:

GASで console.log('hoge'); と書いた場合の例です

% clasp logs
...
DEBUG      2018-09-26T07:43:37.382Z <FUNCTION_NAME> hoge
...

実行結果例 エラー:

例外が起きた場合のエラーログも確認できます

% clasp logs
...
ERROR      2018-09-26T02:00:58.400Z <FUNCTION_NAME> {"context":{"reportLocation":{"functionName":...(略)
...

まとめ

clasp logs でGASの実行ログを確認できました

2
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?