Hi - I have a nlog config file as shown below. However when there are unicode characters in the file then the file never appears in that folder - take out the "odd" characters and it works just fine. Anyone know what I'm doing wrong?
<?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="C:\UnicodeĆñāćـلـلغلف\Server.log" archiveEvery="Day" archiveFileName="C:\UnicodeĆñāćـلـلغلف\Server.log.{#####}.log" maxArchiveFiles="7" concurrentWrites="true" encoding="utf-8" layout="${longdate}|${level}|${message} " />
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="logFile" />
</rules>
</nlog>