I am writing a custom function to be used in a spreadsheet and I would like to be able to at least display some data. Few things seem to work, for example Browser.msgBox
doesn't find the appropriate permissions.
Breakpoints don't interrupt execution.
I had some hope for this code
function test() {
var s = "test"
Logger.log(s)
return s + s
}
But when I set a cell in the spreadsheet to "=test()"
the cell properly shows the value "testtest" but when I return to the script editor and use view>execution transcript or view>logs
I don't see anything.
Perhaps this logging goes to a special file somewhere?