From ea8ea508140d601ebc5098f156fd55efbb2866de Mon Sep 17 00:00:00 2001 From: Tom Early Date: Mon, 8 Apr 2019 10:01:31 -0700 Subject: [PATCH] shut off get_yrcall message --- QnetGateway.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QnetGateway.cpp b/QnetGateway.cpp index 108d6d1..b26b5d3 100644 --- a/QnetGateway.cpp +++ b/QnetGateway.cpp @@ -572,7 +572,7 @@ bool CQnetGateway::get_yrcall_rptr(const std::string &call, std::string &arearp_ int rc = get_yrcall_rptr_from_cache(call, arearp_cs, zonerp_cs, mod, ip, RoU); pthread_mutex_unlock(&irc_data_mutex); if (rc == 0) { - printf("get_yrcall_rptr_from_cache: call='%s' arearp_cs='%s' zonerp_cs='%s', mod=%c ip='%s' RoU=%c\n", call.c_str(), arearp_cs.c_str(), zonerp_cs.c_str(), *mod, ip.c_str(), RoU); + //printf("get_yrcall_rptr_from_cache: call='%s' arearp_cs='%s' zonerp_cs='%s', mod=%c ip='%s' RoU=%c\n", call.c_str(), arearp_cs.c_str(), zonerp_cs.c_str(), *mod, ip.c_str(), RoU); return true; } else if (rc == 2) return false;