Log4j show package name
Right now for my ConversionPattern I have: log4j.appender.A1.layout.ConversionPattern=%d{yyyy MMM dd HH:mm:ss,SSS} %5p [%t] (%F:%L) - %m%n What I'd like to do is also include the full package name with the class (%F:%L) but I can't find any config to do so in the docs . I do understand that this will be slower, but it's only for debugging and not when the system will be in production. Maybe I just misunderstand you, but %C will output your class with package. From your referenced docs: %C Used to output the fully qualified class name of the caller issuing the logging request. This conversion