Skip to content

Commit

Permalink
Merge pull request IDEMSInternational#8012 from ChrisMarsh82/NLog
Browse files Browse the repository at this point in the history
Added nlog
  • Loading branch information
lloyddewit authored Jan 10, 2023
2 parents 87b3682 + 5013da4 commit 48eef21
Show file tree
Hide file tree
Showing 6 changed files with 3,553 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -250,3 +250,4 @@ installer/Output/
# Package used by script window
/packages/jacobslusser.ScintillaNET.*/

/packages/NLog.*/
51 changes: 51 additions & 0 deletions instat/NLog.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?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"
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
autoReload="true"
throwExceptions="false"
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">

<!-- optional, add some variables
https://github.com/nlog/NLog/wiki/Configuration-file#variables
-->
<variable name="myvar" value="myvalue"/>

<!--
See https://github.com/nlog/nlog/wiki/Configuration-file
for information on customizing logging rules and outputs.
-->
<targets>

<!--
add your targets here
See https://github.com/nlog/NLog/wiki/Targets for possible targets.
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
-->

<!--
Write events to a file with the date in the filename.
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
layout="${longdate} ${uppercase:${level}} ${message}" />
-->


<target
name="AllLogs"
xsi:type="File"
layout="${longdate} ${uppercase:${level}} ${message}|${exception}"
fileName="${basedir}/logs/${shortdate}.log"
maxArchiveDays="5"
archiveEvery="Day"
archiveOldFileOnStartup="true"
/>
</targets>
<rules>
<!-- add your logging rules here -->

<!--
Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace) to "f"
-->
<logger name="*" minlevel="Debug" writeTo="AllLogs" />
</rules>
</nlog>
Loading

0 comments on commit 48eef21

Please sign in to comment.