Moved restorationIsActive field to signalR alarms Channel

This commit is contained in:
Lucio Maranta
2018-04-13 15:45:38 +02:00
parent 0fb6bbb119
commit f2fa6dc87e
7 changed files with 37 additions and 20 deletions
+8 -1
View File
@@ -25,9 +25,16 @@ namespace Step.Config
ReadAlarmsConfig();
ReadHeadsConfig();
}
catch (System.Xml.XmlException ex)
{
ExceptionManager.Manage(ERROR_LEVEL.FATAL,
"Error while reading file: " + ex.SourceUri +
"\n Error: " + ex.Message
);
}
catch (Exception ex)
{
ExceptionManager.Manage(ex);
ExceptionManager.Manage(ERROR_LEVEL.FATAL, ex.Message);
}
}