I am using Orika for a data conversion project. I would like to know how to drop the Debugging level down to ERROR (?) instead of DEBUG which it seems to be set to currently. The log files are huge and I’m sure the process time would change quite a bit too. Any help qould be much appreciated as I cannot find anything usefull on the net.
Many Thanks.
I’ve searched the internet as well as all documentation I could find but nothing provided a route to me solving my issue.
Stephen Finnegan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2
The how to depends on the logging framework you use
for Log4j 2
:
Adding or modifying the log4j2.xml
configuration file:
<Configuration>
<Loggers>
<Logger name="ma.glasnost.orika" level="ERROR" />
<!-- Other configurations -->
</Loggers>
</Configuration>
for Log4j 1.x
:
adding or modifying the log4j.properties file:
log4j.logger.ma.glasnost.orika=ERROR
0