diff options
author | Grant Limberg <grant.limberg@zerotier.com> | 2018-10-24 13:36:07 -0700 |
---|---|---|
committer | Grant Limberg <grant.limberg@zerotier.com> | 2018-10-24 13:36:07 -0700 |
commit | 761cc5c923a4b1894c176754d9e799343473daa4 (patch) | |
tree | 05af27e78f55d06048fc0526ab467ee5bd4057cb /controller | |
parent | f901b9dd6bd877c19fca6b95128c583be6e25d80 (diff) | |
download | infinitytier-761cc5c923a4b1894c176754d9e799343473daa4.tar.gz infinitytier-761cc5c923a4b1894c176754d9e799343473daa4.zip |
remove another noisy log line
Diffstat (limited to 'controller')
-rw-r--r-- | controller/PostgreSQL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/PostgreSQL.cpp b/controller/PostgreSQL.cpp index 6e6737c5..19c1dfb7 100644 --- a/controller/PostgreSQL.cpp +++ b/controller/PostgreSQL.cpp @@ -621,7 +621,7 @@ void PostgreSQL::commitThread() std::string networkId = (*config)["nwid"]; std::string identity = (*config)["identity"]; std::string target = "NULL"; - fprintf(stderr, "Updating Member %s-%s\n", networkId.c_str(), memberId.c_str()); + if (!(*config)["remoteTraceTarget"].is_null()) { target = (*config)["remoteTraceTarget"]; } |