mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
trying to fix nlog for nzbdrone services
This commit is contained in:
parent
dfba627edc
commit
89dba91f3a
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Linq;
|
||||
using System.Web.Hosting;
|
||||
using NLog;
|
||||
using NzbDrone.Common;
|
||||
using NzbDrone.Services.Service.App_Start;
|
||||
|
@ -14,13 +15,15 @@ namespace NzbDrone.Services.Service.App_Start
|
|||
|
||||
public static void PreStart()
|
||||
{
|
||||
string logPath = string.Format("C:\\NLog\\{0}\\{1}\\${{shortdate}}.log", HostingEnvironment.SiteName, new EnviromentProvider().Version);
|
||||
|
||||
LogConfiguration.RegisterUdpLogger();
|
||||
LogConfiguration.RegisterFileLogger("${basedir}/_logs/${shortdate}.log", LogLevel.Trace);
|
||||
LogConfiguration.RegisterFileLogger(logPath, LogLevel.Trace);
|
||||
LogConfiguration.Reload();
|
||||
|
||||
logger.Info("Logger has been configured. (App Start)");
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue