2b75b07e by Adam Heath

Fix nested list processing of log arguments.

1 parent d2ec9a6d
......@@ -4,7 +4,6 @@ import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
......@@ -64,7 +63,7 @@ public class OfbizRhinoContainer extends RhinoContainer<OfbizRhinoContainer> {
}
public void print(Context cx, Scriptable thisObj, Object[] args, Function funObj) {
Debug.logInfo("print:%s", module, Arrays.asList(args));
Debug.logInfo("print:%s", module, args);
}
public void processSource(Context cx, Scriptable thisObj, String filename) throws FileNotFoundException, IOException {
......