Click HERE to see how Saviynt Intelligence is transforming the industry. |
10/30/2024 08:08 AM
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?
Solved! Go to Solution.
10/30/2024 08:19 AM
Use logger
private static final Logger log = Logger.getLogger(RushikeshVartakSaviyntWorkflowActionEvent.class.getName());
log.info("Configuration map is empty. Exiting...");
10/30/2024 11:30 AM
Worked like a charm, thank a lot!