From 285a810814d0a82faceb996cac5fd9edfe95f3b8 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 20 May 2025 15:09:12 +0200 Subject: [PATCH] Revert "Temporarily enable history_file debug category by default" Commit f906a949cf1 (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 --- src/flog.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flog.rs b/src/flog.rs index 9a90ae600..6771b2ac2 100644 --- a/src/flog.rs +++ b/src/flog.rs @@ -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");