From 1c209b3320cf71e12a97100d384a44fc602885d5 Mon Sep 17 00:00:00 2001 From: RickyRister <42636155+RickyRister@users.noreply.github.com> Date: Mon, 3 Nov 2025 09:55:32 -0800 Subject: [PATCH] Fix names in qtlogging.ini (#6265) --- cockatrice/resources/config/qtlogging.ini | 10 ++++++---- cockatrice/src/game/game_event_handler.h | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/cockatrice/resources/config/qtlogging.ini b/cockatrice/resources/config/qtlogging.ini index d5a96f6c3..083d7234e 100644 --- a/cockatrice/resources/config/qtlogging.ini +++ b/cockatrice/resources/config/qtlogging.ini @@ -37,12 +37,14 @@ #card_zone = true #view_zone = true +#game_event_handler = true + #user_info_connection = true -#picture_loader = true -#picture_loader.worker = true -#picture_loader.card_back_cache_fail = true -#picture_loader.picture_to_load = true +#card_picture_loader = true +#card_picture_loader.worker = true +#card_picture_loader.card_back_cache_fail = true +#card_picture_loader.picture_to_load = true #deck_loader = true #card_database = true #card_database.loading = true diff --git a/cockatrice/src/game/game_event_handler.h b/cockatrice/src/game/game_event_handler.h index 2709cdcd5..302e7a6ff 100644 --- a/cockatrice/src/game/game_event_handler.h +++ b/cockatrice/src/game/game_event_handler.h @@ -40,7 +40,7 @@ class AbstractGame; class PendingCommand; class Player; -inline Q_LOGGING_CATEGORY(GameEventHandlerLog, "tab_game"); +inline Q_LOGGING_CATEGORY(GameEventHandlerLog, "game_event_handler"); class GameEventHandler : public QObject {