Troubleshooting
The Oracle Utilities Network Management System - ODIN Adapter uses the Apache Log4j 2 library to log error, warning and debug messages. To enable debug output, the following lines should be added to the Log4j 2 configuration file used by the WebLogic Server where the adapter is deployed.
Supported debug facilities:
com.oracle.ugbu.nms.interfaces.odin: general debug
REST: web service calls publishing outage information
OAUTH: OAuth-related debug.
 
<Logger name="com.oracle.ugbu.nms.interfaces.odin" level="debug"
additivity="false">
<AppenderRef ref="Console"/>
</Logger>
<Logger name="REST" level="debug" additivity="false">
<AppenderRef ref="Console"/>
</Logger>
<Logger name="OAUTH" level="debug" additivity="false">
<AppenderRef ref="Console"/>
</Logger>