From 577a9ce035d64d5abb9e65f8ac4c34d54cf28027 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 5 May 2016 18:05:37 +0200 Subject: [PATCH] redis-cli: remove debugging message. --- src/redis-cli.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/redis-cli.c b/src/redis-cli.c index f9ee42d04..1e47c3405 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -1231,7 +1231,6 @@ static void repl(void) { if (line[0] != '\0') { argv = cliSplitArgs(line,&argc); if (history) linenoiseHistoryAdd(line); - printf("HISTORY: %s\n", historyfile); if (historyfile) linenoiseHistorySave(historyfile); if (argv == NULL) {