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) {
|
public void reportError(Exception e) {
|
||||||
if (e != null) {
|
if (e != null) {
|
||||||
String message = e.getMessage();
|
String error = e.getMessage();
|
||||||
if (message != null) {
|
if (error != null) {
|
||||||
reportError(message);
|
reportError(error);
|
||||||
} else {
|
} else {
|
||||||
reportError(e.toString());
|
reportError(e.toString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue