Commit a648afd4 authored by Robert Schmidt's avatar Robert Schmidt

RFsim Client: Improve logs

- Remove double "Connection ... established" (already printed in
  caller)
- Remove useless, there is already the logging module
- Print getaddrinfo() error as LOG_E (error)
parent 6344fce6
...@@ -635,7 +635,7 @@ static int client_try_connect(const char *host, uint16_t port) ...@@ -635,7 +635,7 @@ static int client_try_connect(const char *host, uint16_t port)
s = getaddrinfo(host, dport, &hints, &result); s = getaddrinfo(host, dport, &hints, &result);
if (s != 0) { if (s != 0) {
LOG_I(HW, "getaddrinfo: %s\n", gai_strerror(s)); LOG_E(HW, "getaddrinfo: %s\n", gai_strerror(s));
return -1; return -1;
} }
for (rp = result; rp != NULL; rp = rp->ai_next) { for (rp = result; rp != NULL; rp = rp->ai_next) {
...@@ -645,7 +645,6 @@ static int client_try_connect(const char *host, uint16_t port) ...@@ -645,7 +645,6 @@ static int client_try_connect(const char *host, uint16_t port)
} }
if (connect(sock, rp->ai_addr, rp->ai_addrlen) != -1) { if (connect(sock, rp->ai_addr, rp->ai_addrlen) != -1) {
LOG_I(HW, "Connection to %s:%d established\n", host, port);
break; break;
} }
...@@ -674,7 +673,6 @@ static int startClient(openair0_device *device) ...@@ -674,7 +673,6 @@ static int startClient(openair0_device *device)
} }
LOG_I(HW, "connect() to %s:%d failed, errno(%d)\n", t->ip, t->port, errno); LOG_I(HW, "connect() to %s:%d failed, errno(%d)\n", t->ip, t->port, errno);
fprintf(stderr, "Could not connect\n");
sleep(1); sleep(1);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment