Printing to the console in Google Apps Script?

LoggingGoogle Apps-Scriptconsole.log

Logging Problem Overview


I am very new to programming (have taken some of the JS courses on Codecademy). I am trying to create a simple script to determine, if given a spreadsheet with results from a poker game, who should pay whom. I opened up Google Apps Script, and wrote the following to get started:

function addplayerstoArray(numplayers) {
  
  var playerArray = [];
  
  for (i=0; i<numplayers; i++) {
    playerArray.push(i);
  }
}  

addplayerstoArray(7);

console.log(playerArray[3])

The idea is to create an array with the total number of players in it. When running the code, I thought it would print "3" to the console. But nothing happened. It said

> "ReferenceError: "console" is not defined."

A) What do I not understand about how the Google Apps Script console works with respect to printing so that I can see if my code is accomplishing what I'd like?

B) Is it a problem with the code?

Logging Solutions


Solution 1 - Logging

The console is not available because the code is running in the cloud, not in your browser. Instead, use the Logger class provided by GAS:

Logger.log(playerArray[3])

and then view the results in the IDE under View > Logs...

Here's some documentation on logging with GAS.

Edit: 2017-07-20 Apps script now also provides Stackdriver Logging. View these logs in the script editor under View - Console Logs.

Solution 2 - Logging

Just to build on vinnief's hacky solution above, I use MsgBox like this:

Browser.msgBox('BorderoToMatriz', Browser.Buttons.OK_CANCEL);

and it acts kinda like a break point, stops the script and outputs whatever string you need to a pop-up box. I find especially in Sheets, where I have trouble with Logger.log, this provides an adequate workaround most times.

Solution 3 - Logging

Even though Logger.log() is technically the correct way to output something to the console, it has a few annoyances:

  1. The output can be an unstructured mess and hard to quickly digest.
  2. You have to first run the script, then click View / Logs, which is two extra clicks (one if you remember the Ctrl+Enter keyboard shortcut).
  3. You have to insert Logger.log(playerArray), and then after debugging you'd probably want to remove Logger.log(playerArray), hence an additional 1-2 more steps.
  4. You have to click on OK to close the overlay (yet another extra click).

Instead, whenever I want to debug something I add breakpoints (click on line number) and press the Debug button (bug icon). Breakpoints work well when you are assigning something to a variable, but not so well when you are initiating a variable and want to peek inside of it at a later point, which is similar to what the op is trying to do. In this case, I would force a break condition by entering "x" (x marks the spot!) to throw a run-time error:

enter image description here

Compare with viewing Logs:

enter image description here

The Debug console contains more information and is a lot easier to read than the Logs overlay. One minor benefit with this method is that you never have to worry about polluting your code with a bunch of logging commands if keeping clean code is your thing. Even if you enter "x", you are forced to remember to remove it as part of the debugging process or else your code won't run (built-in cleanup measure, yay).

Solution 4 - Logging

Answering the OP questions

> A) What do I not understand about how the Google Apps Script console works with respect to printing so that I can see if my code is accomplishing what I'd like?

The code on .gs files of a Google Apps Script project run on the server rather than on the web browser. The way to log messages was to use the Class Logger.

> B) Is it a problem with the code?

As the error message said, the problem was that console was not defined but nowadays the same code will throw other error:

> ReferenceError: "playerArray" is not defined. (line 12, file "Code")

That is because the playerArray is defined as local variable. Moving the line out of the function will solve this.

var playerArray = [];

function addplayerstoArray(numplayers) {
  for (i=0; i<numplayers; i++) {
    playerArray.push(i);
  }
}  

addplayerstoArray(7);

console.log(playerArray[3])

Now that the code executes without throwing errors, instead to look at the browser console we should look at the Stackdriver Logging. From the Google Apps Script editor UI click on View > Stackdriver Logging.

Addendum


NOTES:

  1. As of May 2022, logs will be available in the Executions page for 7 days. Also when running a function from the Apps Script editor, the logs will be shown on the bottom of the screen.
  2. Stackdriver Logging was renamed to Cloud Logging.


On 2017 Google released to all scripts Stackdriver Logging and added the Class Console, so including something like console.log('Hello world!') will not throw an error but the log will be on Google Cloud Platform Stackdriver Logging Service instead of the browser console.

From Google Apps Script Release Notes 2017

> June 23, 2017
> > Stackdriver Logging has been moved out of Early Access. All scripts now have access to Stackdriver logging.

From Logging > Stackdriver logging

> The following example shows how to use the console service to log information in Stackdriver. > > function measuringExecutionTime() { > // A simple INFO log message, using sprintf() formatting. > console.info('Timing the %s function (%d arguments)', 'myFunction', 1); >
> // Log a JSON object at a DEBUG level. The log is labeled > // with the message string in the log viewer, and the JSON content > // is displayed in the expanded log structure under "structPayload". > var parameters = { > isValid: true, > content: 'some string', > timestamp: new Date() > }; > console.log({message: 'Function Input', initialData: parameters}); >
> var label = 'myFunction() time'; // Labels the timing log entry. > console.time(label); // Starts the timer. > try { > myFunction(parameters); // Function to time. > } catch (e) { > // Logs an ERROR message. > console.error('myFunction() yielded an error: ' + e); > } > console.timeEnd(label); // Stops the timer, logs execution duration. > }

Solution 5 - Logging

In a google script project you can create html files (example: index.html) or gs files (example:code.gs). The .gs files are executed on the server and you can use Logger.log as @Peter Herrman describes. However if the function is created in a .html file it is being executed on the user's browser and you can use console.log. The Chrome browser console can be viewed by Ctrl Shift J on Windows/Linux or Cmd Opt J on Mac

If you want to use Logger.log on an html file you can use a scriptlet to call the Logger.log function from the html file. To do so you would insert <? Logger.log(something) ?> replacing something with whatever you want to log. Standard scriptlets, which use the syntax <? ... ?>, execute code without explicitly outputting content to the page.

Solution 6 - Logging

Updated for 2020

In February of 2020, Google announced a major upgrade to the built-in Google Apps Script IDE, and it now supports console.log(). So, you can now use both:

  1. Logger.log()
  2. console.log()

Happy coding!

Solution 7 - Logging

Make sure you select the function that needs to be executed. See screenshot:
Apps script logging

Solution 8 - Logging

in new Apps script ( post from 2021) to see log:

  1. go to Apps Script
  2. in the sidebar swich tab from editor to 4th tab (i have other language so i dont know runs or opens how its called) abowe settings
  3. this tab contains history of all scripts runs, just drop down it and you will see your logs

Solution 9 - Logging

Logger.log (your message), then look at log.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionjim_shookView Question on Stackoverflow
Solution 1 - LoggingPeteView Answer on Stackoverflow
Solution 2 - LoggingskathanView Answer on Stackoverflow
Solution 3 - LoggingthdoanView Answer on Stackoverflow
Solution 4 - LoggingRubénView Answer on Stackoverflow
Solution 5 - LoggingTanya GuptaView Answer on Stackoverflow
Solution 6 - LoggingDavis JonesView Answer on Stackoverflow
Solution 7 - LoggingMai Siêu BôngView Answer on Stackoverflow
Solution 8 - LoggingGrzegorz ZygulskiView Answer on Stackoverflow
Solution 9 - LoggingEcaster1View Answer on Stackoverflow