From 2e19e2fc9c648e35aa96a52033c9129e2946c7cd Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Mon, 11 Sep 2017 22:17:27 -0400 Subject: [PATCH] Raise priority of error messages when cannot open a socket --- tid/tids.c | 6 +++--- trp/trps.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tid/tids.c b/tid/tids.c index c1071be..c1c9bcb 100644 --- a/tid/tids.c +++ b/tid/tids.c @@ -432,15 +432,15 @@ int tids_get_listener(TIDS_INSTANCE *tids, tids->tids_port = port; n_fd=tids_listen(tids, port, fd_out, max_fd); if (n_fd<=0) - tr_debug("tids_get_listener: Error opening port %d"); + tr_err("tids_get_listener: Error opening port %d"); else { /* opening port succeeded */ - tr_debug("tids_get_listener: Opened port %d.", port); + tr_info("tids_get_listener: Opened port %d.", port); /* make this socket non-blocking */ for (ii=0; ii