Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
java.io.File myLogFile = new java.io.File("C:/workbench/myTalendJobLogFile.log");
java.io.PrintStream ps = new java.io.PrintStream(new java.io.FileOutputStream(myLogFile));
System.setErr(ps);
System.setOut(ps);
java.io.File myLogFile = new java.io.File("C:/workbench/" + projectName +”_”+ jobName + "_" + TalendDate.getDate(“CCYYMMDDhhmmss”)+”.log”)