Views:
Question:
How do you enable debug logging for Connect to Outlook? 

Answer:
Please refer to the following guide to change the logging to capture debug-related entries;
  1. Browse to C:\Program Files (x86)\DocuWare\CONNECT to Outlook, then open DocuWare.CONNECTtoOutlook.dll.config file.
     
  2. Perform a search on the term "xmlLogTarget" and locate the xmlLogTarget value within the <rules> keys.

            <rules>
                <!--Fatal, Error, Warn, Info, Debug, Trace-->
                <logger name="*" minlevel="Error" writeTo="xmlLogTarget" />
            </rules>

     
  3. Change the minlevel value to Debug, then save your changes. 

            <rules>
                <!--Fatal, Error, Warn, Info, Debug, Trace-->
                <logger name="*" minlevel="Debug" writeTo="xmlLogTarget" />
            </rules>


    Note: Depending on the situation, we can choose Fatal, Error, Warn, Info, or Trace in addition to the debug level.

Once saved, all debug-level entries will be written to the CONNECTtoOutlook.log file in %temp%\DocuWare\Logs.

KBA is applicable for both Cloud and On-premise Organizations