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

Announcements
REMINDER: Qlik Cloud: Removing the deprecated Developer role and Enable API keys toggle: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
AtharK10
Contributor
Contributor

Custom message in TMC logs

Hi,

I want to print the message as "Job abc execution started" and same for "execution completed ". I've tried adding tjava to dbconnection and close connection respectively but TMC is not printing those messages.

Note:I've implemented this in child jobs which is then called by parent.

 

What alternative can be used?

Labels (1)
2 Replies
quentin-vigne
Partner - Creator II
Partner - Creator II

Hello @AtharK10 

You've probably tried the System.out.print() method but this doesn't work in the tmc.

Instead you should try log.info("your message"); and update your log level to "Info" for the job.

- Quentin