- Print
- PDF
How Can I Put Autoform DM Client in/out of DEBUG Logging Mode?
Article summary
Did you find this summary helpful?
Thank you for your feedback
Logging is controlled in the Autoform.Client.exe.config
, within the Client install directory. Follow these steps to put Autoform DM Client into DEBUG logging mode:
Open the Client install directory mentioned above and locate the following tag:
<log4net>
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="${LOCALAPPDATA}\\Formpipe Software\\AUTOFORMDM\\Client\\logs\\${USERNAME}-Client.log"/>
<appendToFile value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="10000KB" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date : %thread %level %logger - %message%newline" />
</layout>
</appender>
<root>
<level value="DEBUG" />
<appender-ref ref="RollingFileAppender" />
</root>
</log4net>
Change the file value to "DEBUG" and save the file.
Restart DM Client for these changes to take effect.