This commit is contained in:
Peter Hsu 2019-04-17 12:27:51 -07:00
Родитель dde6a43806
Коммит 4e2d666aff
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -4,6 +4,7 @@
namespace Microsoft.IIS.Administration.WebServer.Info
{
using Serilog;
using System;
using System.Diagnostics;
using System.IO;
@ -31,9 +32,10 @@ namespace Microsoft.IIS.Administration.WebServer.Info
return Status.Unknown;
}
}
} catch
} catch (PlatformNotSupportedException e)
{
// TODO: log
// Exception occurs during debug when it this app is not run as service
Log.Error($"Error trying to retrieving service status ${e.ToString()}");
return Status.Unknown;
}