fd3ce9f96a
* #103: Adding checks to prevent .wav files from being uploaded: * #103: Added method to create song and moving some code around * #103: Fixed build issue * tsk-103: Cleanup of temporary files * tsk-103: Formatting changes * tsk-103: Minor changes * tsk-103: Fixing build issue * tsk-103: Refactored enum * CORE-23734: Refactoring * tsk-103: Confirmed functionality is working * Removed commented code * Removed commented code
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?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"
|
|
autoReload="true"
|
|
internalLogLevel="Info"
|
|
internalLogFile="Icarus.txt">
|
|
|
|
<!-- enable asp.net core layout renderers -->
|
|
<extensions>
|
|
<add assembly="NLog.Web.AspNetCore"/>
|
|
</extensions>
|
|
|
|
<!-- the targets to write to -->
|
|
<targets>
|
|
<!-- write logs to file -->
|
|
<target xsi:type="File" name="allfile" fileName="Icarus-${shortdate}.log"
|
|
layout="${longdate}|${event-properties:item=EventId_Id}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}" />
|
|
|
|
<!-- another file log, only own logs. Uses some ASP.NET core renderers -->
|
|
<target xsi:type="File" name="ownFile-web" fileName="Icarus-${shortdate}.log"
|
|
layout="${longdate}|${event-properties:item=EventId_Id}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}|url: ${aspnet-request-url}|action: ${aspnet-mvc-action}" />
|
|
</targets>
|
|
|
|
<!-- rules to map from logger name to target -->
|
|
<rules>
|
|
<!--All logs, including from Microsoft-->
|
|
<logger name="*" minlevel="Trace" writeTo="allfile" />
|
|
|
|
<!--Skip non-critical Microsoft logs and so log only own logs-->
|
|
<logger name="Microsoft.*" maxlevel="Info" final="true" /> <!-- BlackHole without writeTo -->
|
|
<logger name="*" minlevel="Trace" writeTo="ownFile-web" />
|
|
</rules>
|
|
</nlog>
|