mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 22:14:53 +00:00
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:
parent
ba455c81b4
commit
a730f9fc90
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ class time_profiler_t {
|
||||||
|
|
||||||
~time_profiler_t() {
|
~time_profiler_t() {
|
||||||
double end = timef();
|
double end = timef();
|
||||||
debug(2, "%s: %.0f ms", what, (end - start) * 1000);
|
debug(5, "%s: %.0f ms", what, (end - start) * 1000);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue