﻿<?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="Trace"
      internalLogFile="h:Projects\Blog-AccountOwner\Project\internal_logs\internallog.txt">

	<targets>
		<target name="logfile" xsi:type="File"
				fileName="B:/WORKING PROJECTS/Violet.LMS.API/Violet.LMS.API/bin/Debug/net8.0/logs/${shortdate}_logfile.txt"
				layout="${longdate} ${level:uppercase=true} ${message}"/>
	</targets>

	<rules>
		<logger name="*" minlevel="Debug" writeTo="logfile" />
	</rules>
</nlog>