Skip to content

Commit

Permalink
#10 Correction in the abstract GoGoCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
ogattaz committed Feb 3, 2018
1 parent bc7ea68 commit 75cd6ca
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ public void logTwiceSevere(final String aWhat, final Throwable aThrowable) {
*/
public void logTwiceSevere(final String aWhat, final Throwable aThrowable, final String format,
final Object... args) {
logTwice(Level.SEVERE, aWhat, format + "ERROR: %s", CXArray.appendOneObject(args, aThrowable));
logTwice(Level.SEVERE, aWhat, format + " ERROR: %s",
CXArray.appendOneObject(args, CXException.eInString(aThrowable)));
}

/**
Expand Down

0 comments on commit 75cd6ca

Please sign in to comment.