I am performing logging in my application via NLog. I am trying to gather some logs to diagnose an odd issue I am having on only one machine. In my NLog.Config I have the following configuration:
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="logfile" xsi:type="File" fileName="${specialfolder:dir=PollingLogs:file=log.txt:folder=MyDocuments}" />
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="logfile" />
</rules>
</nlog>
When I run on my development machine I am getting a log.txt file created in my documents folder, with all logging happening correctly. However, when I deploy the application out with ClickOnce however, no log.txt file is being created (that I can find at least). No errors occur, and my app runs as normal, but nothing is happening.
I am stumped at how to even debug this issue. Does anyone have any insight they can share to help me get NLog to work correctly in a clickonce environment?
As a reference, the NLog reference in my project is set to copy local.