Changes from 19.0.x to 20.0.xLoggerSuccessful 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: Code Block |
---|
| <target xsi:type="File"
name="login"
fileName="${specialfolder:folder=ApplicationData}/AMANAconsulting/SmartTaxBalance/Log/Login.log"
layout="${longdate} ${message}" /> |
Add the logger node below rules: Code Block |
---|
| <logger name="*" minlevel="Info" writeTo="login">
<filters defaultAction="Ignore">
<when condition="contains('${message}', 'Authorization')" action="Log"/>
</filters>
</logger> |
|