Skip to content

Commit 7ca652f

Browse files
committed
jlink: cosmetics in the message box
- do not display "Start ..." since it might come after the program already started
1 parent 87d8561 commit 7ca652f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ilg.gnuarmeclipse.debug.gdbjtag.jlink/src/ilg/gnuarmeclipse/debug/gdbjtag/jlink/dsf/GdbServerBackend.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,10 +255,10 @@ public String prepareMessageBoxText(int exitCode, String message) {
255255
String tail = "\n\nCheck the " + name + " console for more details.";
256256

257257
if (body.isEmpty()) {
258-
return getStartingServerJobName() + " failed with code ("
258+
return getServerName() + " failed with code ("
259259
+ exitCode + ")." + tail;
260260
} else {
261-
return getStartingServerJobName() + " failed: \n" + body + tail;
261+
return getServerName() + " failed: \n" + body + tail;
262262
}
263263
}
264264

0 commit comments

Comments
 (0)