diff --git a/src/server.c b/src/server.c index 5c083449b..7c381ce24 100644 --- a/src/server.c +++ b/src/server.c @@ -5006,7 +5006,8 @@ void loadDataFromDisk(void) { void redisOutOfMemoryHandler(size_t allocation_size) { serverLog(LL_WARNING,"Out Of Memory allocating %zu bytes!", allocation_size); - serverPanic("Redis aborting for OUT OF MEMORY"); + serverPanic("Redis aborting for OUT OF MEMORY. Allocating %zu bytes!", + allocation_size); } void redisSetProcTitle(char *title) {