Changes from 19.0.x to 20.0.x
Logger
Successful logins in the SmartTaxBalance Client are now no longer logged by default. To reactivate this behavior, the following changes must be made in the logger configuration.
Add a target node below targets:
<target xsi:type="File"
name="login"
fileName="${specialfolder:folder=ApplicationData}/AMANAconsulting/SmartTaxBalance/Log/Login.log"
layout="${longdate} ${message}" />
Add the logger node below rules:
<logger name="*" minlevel="Info" writeTo="login">
<filters defaultAction="Ignore">
<when condition="contains('${message}', 'Authorization')" action="Log"/>
</filters>
</logger>