mirror of https://github.com/Ombi-app/Ombi
parent
d0469ecf84
commit
46dc9d95f1
@ -0,0 +1,32 @@
|
||||
<?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="true"
|
||||
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log" >
|
||||
|
||||
|
||||
<!-- optional, add some variabeles
|
||||
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>
|
||||
<target name="console" xsi:type="Console" layout="${message}"/>
|
||||
|
||||
|
||||
</targets>
|
||||
|
||||
<rules>
|
||||
|
||||
<!-- add your logging rules here -->
|
||||
|
||||
<logger name="*" minlevel="Debug" writeTo="console" />
|
||||
|
||||
</rules>
|
||||
</nlog>
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue