Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Custom PreProcessor Logging

flegare
Regular Contributor III
Regular Contributor III

I saw a few posts like this one, where it mentions logging is made through simple System.out, but I cannot see any of my logged lines in output log.

Is there anything else I should be setting to see the log output?

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

Use logger 

   rushikeshvartak_0-1730301455731.pngrushikeshvartak_1-1730301557368.png

 

private static final Logger log = Logger.getLogger(RushikeshVartakSaviyntWorkflowActionEvent.class.getName());
log.info("Configuration map is empty. Exiting...");

Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

flegare
Regular Contributor III
Regular Contributor III

Worked like a charm, thank a lot!