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.
This commit is contained in:
Fabian Homborg 2018-11-28 13:00:22 +01:00
parent ba455c81b4
commit a730f9fc90

View file

@ -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);
}
};