KB Article #191860
Enable debug for new DBLogger
Problem
When problems arise during a startup of a UP2025-08+ B2Bi it may be necessary to enable debug for the new DBLogger. The debug will allow for verbose logging on what is executed in the DBLogger processes.
Resolution
Open the dblogger-log4j2.xml file located in $CORE_ROOT/config/java and change the 'level' from INFO to DEBUG as seen below:
<Logger name="com.axway.integrator.logger" level="INFO" additivity="false">
<AppenderRef ref="logfile"/>
</Logger>
To
<Logger name="com.axway.integrator.logger" level="DEBUG" additivity="false">
<AppenderRef ref="logfile"/>
</Logger>
A restart is not required for this change. Once the DEBUG logs have been collected, it is beneficial to revert the 'level' back to INFO.