Question
1
Replies
255
Views
Victaulic
Posted: March 4, 2019
Last activity: March 5, 2019
Closed
Configure Pega BIX Alert Logging
I would like some direction (and examples, if possible) for configuring BIX alert logging, can someone point me in the right direction?
***Edited by Moderator: Pallavi to update platform capability tags***
If you are looking for how to set BIX logging to DEBUG or ALERT level,
ExtractImpl is the main class that you want to turn on debug for when running BIX.
com.pega.pegarules.data.internal.access.ExtractImpl
Turning on debug for these classes can also be useful.
com.pega.pegarules.data.internal.access.ExtractParameters
com.pega.pegarules.data.internal.access.DatabaseUtilsCommonImpl
Incase logging level settings needed to be changed while running BIX from commandline, Navigate to config folder of BIX (PegaDistributionImage->AdditionalProducts->BIX->config).
Open prlogging.xml/prlog4j.xml.
Following appenders can be found:
<Logger name="com.pega.pegarules.data.internal.access.ExtractImpl" additivity="false" level="info">
<AppenderRef ref="BIX"/>
</Logger>
<Logger name="com.pega.pegarules.data.internal.access.ExtractParameters" additivity="false" level="info">
<AppenderRef ref="BIX"/>
</Logger>
<Logger name="com.pega.pegarules.data.internal.access.DatabaseUtilsCommonImpl" additivity="false" level="info">
<AppenderRef ref="BIX"/>
</Logger>
Change the "level" to "DEBUG" or "ALERT" as you require in each of the above appenders.
This is to log BIX entries in DEBUG and ALERT modes.
Please let me know incase you are looking for something else.