You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
magpieServer.forwardMessageToClient(newMessageParams(MessageType.Error, "Goblint server has been killed. Please check the output terminal of GobPie extension for more information."));
142
+
}
143
+
default -> {
144
+
log.error("Goblint server exited due to an error (code: " + process.exitValue() + "). Please fix the issue reported above and rerun the analysis to restart the extension.");
145
+
magpieServer.forwardMessageToClient(newMessageParams(MessageType.Error, "Goblint server exited due to an error. Please check the output terminal of GobPie extension for more information."));
146
+
}
147
+
}
148
+
magpieServer.cleanUp();
149
+
// TODO: throw an exception? where (and how) can it be caught to be handled though?
150
+
}
151
+
};
133
152
log.info("Goblint run with command: " + String.join(" ", goblintRunCommand));
magpieServer.forwardMessageToClient(newMessageParams(MessageType.Error, "Goblint server exited due to an error. Please check the output terminal of GobPie extension for more information."));
189
-
log.error("Goblint server exited due to an error (code: " + process.exitValue() + "). Please fix the issue reported above and rerun the analysis to restart the extension.");
190
-
}
191
-
magpieServer.cleanUp();
192
-
// TODO: throw an exception? where (and how) can it be caught to be handled though?
0 commit comments