I have found a solution.
After reading Tomcat and Class Loading, I found that there is an order that Tomcat follows. This happens as follows:
Bootstrap (/ jre / lib / ext) -> System (/ catalina-home / bin /) -> Common (/ catalina-home / lib) -> Webapps.
tomcat-juli.jar, which contains logging material, is loaded using the "System" -step, so when you post other logging materials, it ignores it because it is already loaded.
Then the solution should put .jar before tomcat-juli.jar is loaded in / jre / lib / ext. '
Edit: It is not always a good idea to save it in the jre folder, so I found that the best solution is to put it in an approved directory.
-Djava.endorsed.dirs=${catalina_home}/endorsed
This approved directory will be started prior to booting System .
source share