From c29c3d9cc120add5d544bac28c50fe0f812948dc Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Sat, 28 Mar 2020 22:01:35 +0000 Subject: [PATCH] Diferentiate action types in the tool trace --- common/tool/action_manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/tool/action_manager.cpp b/common/tool/action_manager.cpp index 2c151eedbf..4049f7fea8 100644 --- a/common/tool/action_manager.cpp +++ b/common/tool/action_manager.cpp @@ -150,7 +150,7 @@ bool ACTION_MANAGER::RunHotKey( int aHotKey ) const if( context ) { wxLogTrace( kicadTraceToolStack, - "ACTION_MANAGER::RunHotKey Running action %s for hotkey %s", context->GetName(), + "ACTION_MANAGER::RunHotKey Running context action %s for hotkey %s", context->GetName(), KeyNameFromKeyCode( aHotKey ) ); return m_toolMgr->RunAction( *context, true ); @@ -160,7 +160,7 @@ bool ACTION_MANAGER::RunHotKey( int aHotKey ) const for( auto act : global ) { wxLogTrace( kicadTraceToolStack, - "ACTION_MANAGER::RunHotKey Running action: %s for hotkey %s", act->GetName(), + "ACTION_MANAGER::RunHotKey Running global action: %s for hotkey %s", act->GetName(), KeyNameFromKeyCode( aHotKey ) ); if( m_toolMgr->RunAction( *act, true ) )