Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
mmctony
Contributor
Contributor

tLogCatcher: how to ignore errors downstream

Hi,

 

I'm developing on TOS 6.2.1.20160704_1411. I setup a tLogCatcher to intercept exceptions in my flow.

Also I want to perform some operations using tPostJob that may raise other exceptions but I don't want them to be caught by tLogCatcher.

I tried with OnError triggers, but these downstream exceptions eventually get caught by the tLogCatcher.

 

How to suppress them?

 

Thanks in advance for any suggestion.

 

Regards,

Mick

Labels (2)
2 Replies
Anonymous
Not applicable

Hi

All the Java exception will be captured by tLogCatcher, we can't filter or ignore error on tLogCatcher, if you are logging the error to file or DB, you can filter the exception on other component like tMap after tLogCatcher.

What you want to do with onError triggers? Can you explain this?

 

Regards

Shong

mmctony
Contributor
Contributor
Author

Hi Shong,

 

I've managed to solve the issue applying this trick: https://community.talend.com/s/question/0D53p00007vCkRGCA0/how-to-process-the-next-iteration-when-th...

I put a tJavaFlex component in PostJob flow to catch errors so that they don't reach tLogCatcher.

 

Thanks for your help,

Mick