Revert "Temporarily enable history_file debug category by default"

Commit f906a949cf (Temporarily enable history_file debug category by default,
2024-10-09) enabled the "history_file" debug category by default to gather
more data.

Judging from
https://github.com/fish-shell/fish-shell/issues/10300#issuecomment-2876718382
the logs didn't help, or were at least not visible when logging to stderr
(due to reboot).

Let's disable "history_file" logs again to remove potential
noise if the file system is read-only, disk is full etc., see
https://github.com/fish-shell/fish-shell/pull/11492#discussion_r2094781120

See #10300
This commit is contained in:
Johannes Altmanninger
2025-05-20 15:09:12 +02:00
parent 541a069a91
commit 285a810814

View File

@@ -120,7 +120,7 @@ pub fn all_categories() -> Vec<&'static category_t> {
(char_encoding, "char-encoding", "Character encoding issues");
(history, "history", "Command history events");
(history_file, "history-file", "Reading/Writing the history file", true);
(history_file, "history-file", "Reading/Writing the history file");
(profile_history, "profile-history", "History performance measurements");