Extended logging
This section will address different ways to extend logging some components of interest for the application.
All changes should be done in log4j2.xml located in the config folder.
Specific logging for Enrollment added for components from Fortified ID
Locate the section with the AsyncLogger´s in log4j2.xml.
Add the following line somewhere in that section. <AsyncLogger name="fortifiedid.enrollment" level="debug" />
You can also change DEBUG above to TRACE instead for even more extended logging.
Generic for components from Fortified ID
<AsyncLogger name="fortifiedid" level="INFO" /> <AsyncLogger name="fortified" level="INFO" /> <AsyncLogger name="foss" level="INFO" />
You can also change INFO to DEBUG or TRACE for extended logging.