From f906a949cf1067c90ac3ba2c9efd148a02b86d1e Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Wed, 9 Oct 2024 13:01:15 +0200 Subject: [PATCH] Temporarily enable history_file debug category by default All of these should never happen so let's enable them to hopefully get useful bug reports. Should disable it again before a release. See #10300 --- src/flog.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flog.rs b/src/flog.rs index d223ee964..94dcc7c8c 100644 --- a/src/flog.rs +++ b/src/flog.rs @@ -120,7 +120,7 @@ pub mod categories { (char_encoding, "char-encoding", "Character encoding issues"); (history, "history", "Command history events"); - (history_file, "history-file", "Reading/Writing the history file"); + (history_file, "history-file", "Reading/Writing the history file", true); (profile_history, "profile-history", "History performance measurements");