From fc3beb5445e2f4791d7c05df44d2bd443c2d8a88 Mon Sep 17 00:00:00 2001 From: softworkz Date: Sat, 21 May 2016 21:00:19 +0200 Subject: [PATCH] Improved logging IServerEntrypoint.Run --- MediaBrowser.Server.Startup.Common/ApplicationHost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index ae839e6ee0..50f5cc8062 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -339,7 +339,7 @@ namespace MediaBrowser.Server.Startup.Common } catch (Exception ex) { - Logger.ErrorException("Error in {0}", ex, entryPoint.GetType().Name); + Logger.ErrorException("Error in {0}", ex, entryPoint.GetType().FullName); } });