mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
catch errors in entry point
This commit is contained in:
parent
d32c71ca39
commit
8380a92806
@ -199,7 +199,17 @@ namespace MediaBrowser.ServerApplication
|
|||||||
|
|
||||||
Logger.Info("Core startup complete");
|
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>
|
/// <summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user