X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/447ebf3bc73016a6137a458bf0314109a0128157..d876678b5eb0db0df66a658faeb8fb71e236a634:/src/debug.c diff --git a/src/debug.c b/src/debug.c index f16bcfd1..54920032 100644 --- a/src/debug.c +++ b/src/debug.c @@ -589,6 +589,8 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) { /* Log INFO and CLIENT LIST */ redisLog(REDIS_WARNING, "--- INFO OUTPUT"); infostring = genRedisInfoString("all"); + infostring = sdscatprintf(infostring, "hash_init_value: %u\n", + dictGetHashFunctionSeed()); redisLogRaw(REDIS_WARNING, infostring); redisLog(REDIS_WARNING, "--- CLIENT LIST OUTPUT"); clients = getAllClientsInfoString();