Commit 9eeeadc1 authored by Raphael Defosseux's avatar Raphael Defosseux

style(logging): reduced level

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@openairinterface.org>
parent b80177d1
......@@ -74,7 +74,7 @@ int sctp_server::create_socket(const char* address, const uint16_t port_num) {
"getaddrinfo on %s: %s:%d", address, strerror(errno), errno);
return -1;
} else {
Logger::sctp().info("getaddrinfo on %s was OK", address);
Logger::sctp().debug("getaddrinfo on %s was OK", address);
}
if ((socket_ = socket(res->ai_family, SOCK_STREAM, IPPROTO_SCTP)) < 0) {
Logger::sctp().error("socket: %s:%d", strerror(errno), errno);
......
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