Details
-
Fix
-
Status: Approved (View Workflow)
-
Minor
-
Resolution: Fixed
-
1.8
-
None
Description
Current situation
The example for the method names in the object variable_set is wrong.
var names = variable_set.names.split( ";" ); for( var i in names ) spooler_log.info( names[i] + "=" + variable_set( names[i] ) );
Desired behaviour
The example should be
var names = variable_set.names.split( ";" ); for( var i in names ) spooler_log.info( names[i] + "=" + variable_set.value( names[i] ) );