Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tRedirectOutput

hi,

can anyone help with 'tRedirectOutput' component? i am not able to write the red line errors into a text file.

 is there any additional component settings needed?

 

Labels (2)
2 Replies
Anonymous
Not applicable
Author

Hi fem,

       

       Which version of Talend are you using? Are you using below component from Talend exchange?

 

https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&p=marketplace%...

     

      The error seems to be a date parse issue. Could you please add screen shots of the job and component you are using which will give more insight to the issue?

 

Warm Regards,

 

Nikhil Thampi

 

Anonymous
Not applicable
Author

Hello fem,

Is this custom component tRedirectOutput compatible with your current studio version?

Or you could add the following code to a tJava at the beginning of your job. if you haven't created the log directory you can add tCreateTemporaryFile before the tJava and check the box "Remove file when execution is over". this will create the directory for you if you don't have it already.

 java.io.File folder = new java.io.File("/var/");

java.io.File logFile = new java.io.File("/var/textLog.log");

java.io.PrintStream ps = new java.io.PrintStream(new java.io.FileOutputStream(logFile));
System.setOut(ps);

Let us know if it is OK with you.

Best regards

Sabrina
System.setErr(ps);