Skip to content

Commit

Permalink
- Fix #116
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaBear84 committed Jun 27, 2022
1 parent 77521db commit e4968a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/OpenDirectoryDownloader/NLog.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
autoReload="true"
throwExceptions="false"
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
internalLogLevel="Off" internalLogFile="c:${dir-separator}temp${dir-separator}nlog-internal.log">

<!-- optional, add some variables
https://github.com/nlog/NLog/wiki/Configuration-file#variables
Expand Down Expand Up @@ -32,7 +32,7 @@
<target xsi:type="File"
name="fileTarget"
fileName="OpenDirectoryDownloader.log"
archiveFileName="LogArchives\OpenDirectoryDownloader.{##}.log"
archiveFileName="LogArchives${dir-separator}OpenDirectoryDownloader.{##}.log"
archiveAboveSize="5242880"
archiveNumbering="Sequence"
maxArchiveFiles="10"
Expand All @@ -41,7 +41,7 @@
<target xsi:type="File"
name="historyFileTarget"
fileName="History.log"
archiveFileName="LogArchives\History.{##}.log"
archiveFileName="LogArchives${dir-separator}History.{##}.log"
archiveAboveSize="5242880"
archiveNumbering="Sequence"
maxArchiveFiles="10"
Expand Down

0 comments on commit e4968a8

Please sign in to comment.