2
0
Эх сурвалжийг харах

catch errors in entry point

Luke Pulverenti 12 жил өмнө
parent
commit
8380a92806

+ 11 - 1
MediaBrowser.ServerApplication/ApplicationHost.cs

@@ -199,7 +199,17 @@ namespace MediaBrowser.ServerApplication
 
             Logger.Info("Core startup complete");
 
-            Parallel.ForEach(GetExports<IServerEntryPoint>(), entryPoint => entryPoint.Run());
+            Parallel.ForEach(GetExports<IServerEntryPoint>(), entryPoint =>
+            {
+                try
+                {
+                    entryPoint.Run();
+                }
+                catch (Exception ex)
+                {
+                    Logger.ErrorException("Error in {0}", ex, entryPoint.GetType().Name);
+                }
+            });
         }
 
         /// <summary>