Hi @srujan1981,
I am not sure if you will be able to capture all the information as you mentioned in the previous note. However you can try to enable the debug log for the below class:
Class: “com.adobe.idp.um.businesslogic.authentication.AuthenticationManagerBean”
Additionally, Please fine below the correct format for the config that you can customize and update in the doamin_<db>.xml which can help create custom logs for the above mentioned class.
Example:
<periodic-rotating-file-handler name="SAMLLOGS" autoflush="true">
<formatter>
<pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="custom_saml.log"/>
<suffix value=".yyyy-MM-dd"/>
<append value="false"/>
</periodic-rotating-file-handler>
<logger category="com.adobe.idp.um">
<level name="DEBUG"/>
<handlers>
<handler name="SAMLLOGS"/>
</handlers>
</logger>