From 2675e24614561aee5bd265dfcfd822da23ea0d49 Mon Sep 17 00:00:00 2001 From: Enrico Giordani Date: Mon, 23 Nov 2015 13:47:06 -0400 Subject: [PATCH] [Debug] Added Redis version at the top of the crash report. --- src/debug.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/debug.c b/src/debug.c index c9f35f6d..46da81d8 100644 --- a/src/debug.c +++ b/src/debug.c @@ -499,6 +499,7 @@ void bugReportStart(void) { redisLog(REDIS_WARNING, "\n\n=== REDIS BUG REPORT START: Cut & paste starting from here ==="); server.bug_report_start = 1; + WIN32_ONLY(redisLog(REDIS_WARNING, "Redis version: %s", REDIS_VERSION);) } } -- GitLab