Intellij fails to detect the logger added by @Slf4j using Lombok
I am writing a simple app: @Slf4j public class MyApp { public static void main(String[] argv) { log.info(“hello world!”); } } This code compiles just fine, and indeed, when run I see …