0

I have a Spring Boot + Jetty embedded server + Apache camel. How to log all requests to daily rolling file? For logging exceptions I'm using log4j2.

1 Answers1

1

You can place new logback.xml and write your appenders accordingly and place it in classpath, the application.properties will automatically look for it.

For more info please refer doc
For appenders it is already answered here

Amol Raje
  • 928
  • 3
  • 9
  • 16