mirror of https://github.com/rusefi/RomRaider.git
fixed up logger status indicator
git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@399 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
parent
2ed04de68a
commit
1c197f969a
|
@ -558,9 +558,9 @@ public final class EcuLogger extends JFrame implements WindowListener, PropertyC
|
|||
|
||||
public void reportError(Exception e) {
|
||||
if (e != null) {
|
||||
String message = e.getMessage();
|
||||
if (message != null) {
|
||||
reportError(message);
|
||||
String error = e.getMessage();
|
||||
if (error != null) {
|
||||
reportError(error);
|
||||
} else {
|
||||
reportError(e.toString());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue