From af7a164f3043d04beb760584800ad481e87a0eca Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 29 Sep 2017 13:26:36 -0700 Subject: [PATCH] Removed debug lines from ZT1Service functions --- src/ZT1Service.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/ZT1Service.cpp b/src/ZT1Service.cpp index c272b79..8ab73e6 100644 --- a/src/ZT1Service.cpp +++ b/src/ZT1Service.cpp @@ -407,18 +407,15 @@ void zts_simple_start(const char *path, const char *nwid) nanosleep((const struct timespec[]) {{0, (ZTO_WRAPPER_CHECK_INTERVAL * 1000000)}}, NULL); } while (true) { - DEBUG_EXTRA("trying join"); try { zts_join(nwid); - DEBUG_EXTRA("joined"); break; } catch( ... ) { - DEBUG_ERROR("there was a problem joining the virtual network"); + DEBUG_ERROR("there was a problem joining the virtual network %s", nwid); handle_general_failure(); } } - DEBUG_EXTRA("waiting for addresss"); while (zts_has_address(nwid) == false) { nanosleep((const struct timespec[]) {{0, (ZTO_WRAPPER_CHECK_INTERVAL * 1000000)}}, NULL); }