Skip to content

Commit 75cd6ca

Browse files
committed
#10 Correction in the abstract GoGoCommand
1 parent bc7ea68 commit 75cd6ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/boot/org.psem2m.isolates.base/src/org/psem2m/isolates/base/CAbstractGoGoCommand.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ public void logTwiceSevere(final String aWhat, final Throwable aThrowable) {
7676
*/
7777
public void logTwiceSevere(final String aWhat, final Throwable aThrowable, final String format,
7878
final Object... args) {
79-
logTwice(Level.SEVERE, aWhat, format + "ERROR: %s", CXArray.appendOneObject(args, aThrowable));
79+
logTwice(Level.SEVERE, aWhat, format + " ERROR: %s",
80+
CXArray.appendOneObject(args, CXException.eInString(aThrowable)));
8081
}
8182

8283
/**

0 commit comments

Comments
 (0)