Commit c240368e authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Change severity level of getaddrinfo failure to INFO

parent 5f5fb18b
...@@ -128,7 +128,7 @@ evconnlistener* create_evlistener(ListenHandler *handler, int family) ...@@ -128,7 +128,7 @@ evconnlistener* create_evlistener(ListenHandler *handler, int family)
addrinfo *res, *rp; addrinfo *res, *rp;
r = getaddrinfo(get_config()->host, service, &hints, &res); r = getaddrinfo(get_config()->host, service, &hints, &res);
if(r != 0) { if(r != 0) {
LOG(ERROR) << "Unable to get address for " << get_config()->host << ": " LOG(INFO) << "Unable to get address for " << get_config()->host << ": "
<< gai_strerror(r); << gai_strerror(r);
return NULL; return NULL;
} }
......
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