Skip to content

Commit

Permalink
Use DBG level for per-connection nominal log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
danlshields committed Feb 18, 2021
1 parent f925153 commit a595cf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/net_tcp.c
Expand Up @@ -169,7 +169,7 @@ static inline int init_sock_keepalive(int s)
strerror(errno));
return -1;
}
LM_INFO("TCP keepalive enabled on socket %d\n",s);
LM_DBG("TCP keepalive enabled on socket %d\n",s);
}
#endif
#ifdef HAVE_TCP_KEEPINTVL
Expand Down
2 changes: 1 addition & 1 deletion socket_info.c
Expand Up @@ -1297,7 +1297,7 @@ int probe_max_sock_buff(int sock,int buff_choice,int buff_max,int buff_increment
LM_ERR("getsockopt: %s\n", strerror(errno));
return -1;
}
LM_INFO("using %s buffer of %d kb\n",info, (foptval/1024));
LM_DBG("using %s buffer of %d kb\n",info, (foptval/1024));

return 0;
}

0 comments on commit a595cf1

Please sign in to comment.