Fix error messages

Fix frontend assistedTooling
Fix application closure
This commit is contained in:
Lucio Maranta
2019-05-15 17:28:21 +02:00
parent 31dad61b1b
commit 306fa43593
10 changed files with 79 additions and 43 deletions
+3 -2
View File
@@ -40,7 +40,8 @@ namespace Step.Config
{
ExceptionManager.Manage(ERROR_LEVEL.FATAL,
"Error while reading file: " + ex.SourceUri +
"\n Error: " + ex.Message
"\n Error: " + ex.Message,
true
);
}
catch (Exception ex)
@@ -48,7 +49,7 @@ namespace Step.Config
var message = ex.Message;
if (ex.InnerException != null)
message += "\n"+ex.InnerException.Message;
ExceptionManager.Manage(ERROR_LEVEL.FATAL, message);
ExceptionManager.Manage(ERROR_LEVEL.FATAL, message, true);
}
}