Fix logging of startup location

This commit is contained in:
ta264 2021-01-24 22:05:08 +00:00
parent 14d43e6d6b
commit 560dc1ffed
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,5 @@
using System;
using System.Diagnostics;
using System.Reflection;
using System.Text;
using System.Threading;
@ -22,7 +23,13 @@ namespace Radarr.Host
{
try
{
Logger.Info("Starting Radarr - {0} - Version {1}", Assembly.GetCallingAssembly().Location, Assembly.GetExecutingAssembly().GetName().Version);
Logger.Info("Starting Radarr - {0} - Version {1}",
#if NETCOREAPP
Process.GetCurrentProcess().MainModule.FileName,
#else
Assembly.GetCallingAssembly().Location,
#endif
Assembly.GetExecutingAssembly().GetName().Version);
if (!PlatformValidation.IsValidate(userAlert))
{