Diferentiate action types in the tool trace

This commit is contained in:
Ian McInerney 2020-03-28 22:01:35 +00:00
parent 2c86b3d8cf
commit c29c3d9cc1
1 changed files with 2 additions and 2 deletions

View File

@ -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 ) )