Cleanup main() and BACKTRACE mistaken pulled while rebasing.

This commit is contained in:
Geoff Garside
2012-10-17 23:26:30 +01:00
committed by antirez
parent d3bf85423a
commit 5938126c98

View File

@ -2882,6 +2882,8 @@ int main(int argc, char **argv) {
loadDataFromDisk();
if (server.ipfd_count > 0)
redisLog(REDIS_NOTICE,"The server is now ready to accept connections on port %d", server.port);
if (server.ip6fd > 0)
redisLog(REDIS_NOTICE,"The server is now ready to accept IPv6 connections on port %d", server.port6);
if (server.sofd > 0)
redisLog(REDIS_NOTICE,"The server is now ready to accept connections at %s", server.unixsocket);
}