.get_log()
Returns array of logged strings from [[.log()]]
Syntax
return #fs.scripts.lib().get_log();
Parameters
There are no known parameters.
Return
Returns an array of strings. In the example below, returns:
"hello world"
Example
function(context, args) {
const l = #fs.scripts.lib();
l.log('hello world');
return l.get_log();
}