You are not logged in.
Announcement
Unanswered posts
|

Hello,
I'm wondering what are some common logging methodology that I should use to track errors or processing metadata?
tStatCatcher - only tracks start and end Job
tLogCatch - only tracks tWarn or tDie components
Am I missing any capabilities of these components?
Thanks!
Offline

Something similar to SSIS which it logs onError, onInformation, onProgress to a table or file.
Offline

Is there a sample/demo Job that shows how to track error messages when Talend components fail?
Offline
Hello
tLogCatch - only tracks tWarn or tDie components
tLogCatch - catch tWarn or tDie components, and runtime errors. Please see the user documentation, there should be some demos. Here is a simple job:
tFileInputDelimited---tMysqlOutput
tLogCatcher---tLogRow
Best regards
shong
Offline

And how about getting the stacktrace in the logfile? I only see one entry? The documentation and tutorials about how to use logging could be a lot better I think.
Some stuff is also confusing:
- tLogRow, nope it will not log to a file, just print to the console output in studio IDE, I think it does nothing when being run in Karaf? so it is not really logging only println ing
- tWarning, this one can be used to send info to the tCatcher component, sounds more like a tLogRow, not sure why it is called warning as you can use it for INFO, DEBU, TRACE, ERROR, etc..? and will this show up in Karaf?
- karaf how a logging system, with a active loglevel that can be setup in the console, can I use that from talend?
Offline