mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 09:06:09 +03:00
15 lines
482 B
XML
Executable File
15 lines
482 B
XML
Executable File
<?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="karmabot.log" />
|
|
<target name="logconsole" xsi:type="Console" />
|
|
</targets>
|
|
|
|
<rules>
|
|
<logger name="*" minlevel="Info" writeTo="logconsole" />
|
|
<logger name="*" minlevel="Trace" writeTo="logfile" />
|
|
</rules>
|
|
</nlog>
|