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);
|
||||
int result = -1;
|
||||
try {
|
||||
result = UIAppMain(args);
|
||||
Log.i("UIAppMain returned ", result);
|
||||
version (unittest) {
|
||||
} else {
|
||||
result = UIAppMain(args);
|
||||
Log.i("UIAppMain returned ", result);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Log.e("Abnormal UIAppMain termination");
|
||||
Log.e("UIAppMain exception: ", e);
|
||||
|
|
Loading…
Reference in New Issue