mirror of https://github.com/buggins/dlangui.git
Travis CI: console linking fix
This commit is contained in:
parent
60b2c3a05a
commit
1c561ddbd0
|
@ -505,8 +505,11 @@ extern(C) int DLANGUImain(string[] args) {
|
||||||
Log.i("Entering UIAppMain: ", args);
|
Log.i("Entering UIAppMain: ", args);
|
||||||
int result = -1;
|
int result = -1;
|
||||||
try {
|
try {
|
||||||
result = UIAppMain(args);
|
version (unittest) {
|
||||||
Log.i("UIAppMain returned ", result);
|
} else {
|
||||||
|
result = UIAppMain(args);
|
||||||
|
Log.i("UIAppMain returned ", result);
|
||||||
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Log.e("Abnormal UIAppMain termination");
|
Log.e("Abnormal UIAppMain termination");
|
||||||
Log.e("UIAppMain exception: ", e);
|
Log.e("UIAppMain exception: ", e);
|
||||||
|
|
Loading…
Reference in New Issue