I am using PODAM library to populate my POJOs with some random values and PODAM is spaming my logs. For 1 simple test I have more 6000+ lines in logs. I am only able to turn it off by adding.
EDITED:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<logger name="uk.co.jemos.podam.api.PodamFactoryImpl" level="INFO"/>-->
</configuration>
I am just wondering if there is another way how to achieve? Looging.level.root=INFO in application.properties doesnt help and I tried also LogManager.getLogger(PodamFactoryImpl.class).setLevel(LogLevel.OFF)
Many thanks