java.io.File file = new java.io.File("d:/mytalend.log");
java.io.PrintStream log_java = new java.io.PrintStream(new java.io.FileOutputStream(file));
System.setOut(log_java);
The standard output of the entire Job will be redirected to the file
d:/mytalend.log.