Skip to content

Instantly share code, notes, and snippets.

@takanakahiko
Created May 1, 2017 15:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takanakahiko/4319e352beeb9884d6588fb23713f02c to your computer and use it in GitHub Desktop.
Save takanakahiko/4319e352beeb9884d6588fb23713f02c to your computer and use it in GitHub Desktop.
GASでdoPostとかでログ出す
function addLog(text/*ログ内容*/) {
var spreadsheetId = "シートのID";
var sheetName = "シート1";
var spreadsheet = SpreadsheetApp.openById(spreadsheetId);
var sheet = spreadsheet.getSheetByName(sheetName);
sheet.appendRow([new Date()/*タイムスタンプ*/,text]);
return text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment