Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created April 22, 2019 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/997924efc2e2166cef1e33a122305f1a to your computer and use it in GitHub Desktop.
Save iaindooley/997924efc2e2166cef1e33a122305f1a to your computer and use it in GitHub Desktop.
Debug
function debug()
{
//Contents of the "Function Call" column in ExecutionQueue
var obj = {"functionName":"scheduleFirstSendCards","parameters":{"id":"5a39fd61285a2899ed212e7a"}};
//This will simulate exactly the function call with the added benefit that you can run it
//directly from the script editor, and that you can then use the built in Google Apps Script
//Logger.log() to write logs which you can view in the script editor which can be quicker than using
//Trellinator.log and having to view them in JSON format
scheduleFirstSendCards(obj.parameters);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment