Change severity level of getaddrinfo failure to INFO

This commit is contained in:
Tatsuhiro Tsujikawa 2012-06-07 02:16:30 +09:00
parent 5f5fb18b77
commit c240368ee5
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ evconnlistener* create_evlistener(ListenHandler *handler, int family)
addrinfo *res, *rp;
r = getaddrinfo(get_config()->host, service, &hints, &res);
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);
return NULL;
}