I am trying to integrate logging into a current Spring Boot app, but I have some questions regarding the following points. Could you clarify this for me?
1. Which logging library should I use? Logback or Slf4j? I want to use the most common or proper one.
2. Where should I add logging? For example, my app only retrieves data from CSV files, and I am unsure if I should add a log as info after reading data or if no record was found in CSV (I will add my global exception handler).