]> git.saurik.com Git - redis.git/commitdiff
Add used allocator in redis-server -v output.
authorantirez <antirez@gmail.com>
Sat, 24 Mar 2012 10:52:56 +0000 (11:52 +0100)
committerantirez <antirez@gmail.com>
Sat, 24 Mar 2012 10:52:56 +0000 (11:52 +0100)
src/redis.c

index 8cfabba7faa0e22963f2aaf761c9b1a27b230dce..44c75353ca549c9e803d31df46172b74a4f45929 100644 (file)
@@ -2185,8 +2185,8 @@ void daemonize(void) {
 }
 
 void version() {
-    printf("Redis server version %s (%s:%d)\n", REDIS_VERSION,
-        redisGitSHA1(), atoi(redisGitDirty()) > 0);
+    printf("Redis server v=%s sha=%s:%d malloc=%s\n", REDIS_VERSION,
+        redisGitSHA1(), atoi(redisGitDirty()) > 0, ZMALLOC_LIB);
     exit(0);
 }