From a730f9fc9057fbc4cee519e959d73fc6103647b0 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Wed, 28 Nov 2018 13:00:22 +0100 Subject: [PATCH] history: Move profiler message to debug level 5 This message would print when the prompt had just been printed, and nobody really needs this currently. --- src/history.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/history.cpp b/src/history.cpp index 996a14852..a2b4bb0bc 100644 --- a/src/history.cpp +++ b/src/history.cpp @@ -131,7 +131,7 @@ class time_profiler_t { ~time_profiler_t() { double end = timef(); - debug(2, "%s: %.0f ms", what, (end - start) * 1000); + debug(5, "%s: %.0f ms", what, (end - start) * 1000); } };