6.12.2019

This commit is contained in:
Gregor_Dutzler 2019-12-06 10:41:36 +01:00
parent ad62228a29
commit 1689a6f6c1

View File

@ -35,6 +35,7 @@ public class main {
} }
}).start(); }).start();
//startup web server //startup web server
Thread mythread = new Thread(() -> new Webserver().startserver()); Thread mythread = new Thread(() -> new Webserver().startserver());
mythread.start(); mythread.start();
@ -46,9 +47,7 @@ public class main {
mqtt m = new mqtt(); mqtt m = new mqtt();
m.notifymessage(); m.notifymessage();
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); Log.debug("An error was happened in the class mqtt");
} }
} }
} }