Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

TlogCatcher to file

TOS2.4.1 - java
Hello,
I wanted to log some tWarn and/or Tdie in a file.
But if I have more than 1 Twarn, only the last one appear in the file.
Example (stupid job for demo)
TlogCatcher--------->FileOutput
TfileInput -------> tWarn_1-------->tWarn_2

In the output file I get only one line :
2008-09-26 11:43:10;U2tlUt;U2tlUt;U2tlUt;PROJECT;help;Default;4;tWarn;tWarn_2;this is a warning 2;42
But I wanted :
2008-09-26 11:43:35;7AiYg7;7AiYg7;7AiYg7; PROJECT;help;Default;4;tWarn;tWarn_1;this is a warning 1;42
2008-09-26 11:43:10;U2tlUt;U2tlUt;U2tlUt; PROJECT;help;Default;4;tWarn;tWarn_2;this is a warning 2;42
Do I not the right thing or is it a bug?

PS : If I check "append" I get all but without \n, so it isn't readable.

Thanks
José
Labels (3)
1 Reply
Anonymous
Not applicable
Author

Forget my issue!
If I check "append" it isn't readable with notepad but it is OK with notepad++
To be readable with notepad, we have to put "\r\n" as row separator.
José