Logging Workflows in Spring Boot Application (java-sdk)

How do you handle workflow logging in a Spring Boot Application?
I can manage Activity logging by making it a Spring Bean. What about workflow logging?
I tried using lombok’s slf4j, but I guess I need to add a logging library and it works? (edited)

Hey @Hrishikesh_Chappadi

Java SDK just uses slf4j facade and you can plug in your own logging impl of choice. You could use logback config similar what’s done in samples repo. Note you can use following logger tags in your pattern.

You can also see logback integration docs with spring boot here that might help.