From e7798d8f236dffeb0868eb542dc1a401bb9cd6ca Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Fri, 16 Apr 2021 17:40:56 +0100 Subject: [PATCH] Add another logging call to the tool manager --- common/tool/tool_manager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/tool/tool_manager.cpp b/common/tool/tool_manager.cpp index 7002404be8..0053029913 100644 --- a/common/tool/tool_manager.cpp +++ b/common/tool/tool_manager.cpp @@ -400,6 +400,9 @@ bool TOOL_MANAGER::runTool( TOOL_BASE* aTool ) TOOL_ID id = aTool->GetId(); + wxLogTrace( kicadTraceToolStack, "TOOL_MANAGER::runTool - running tool %s", + aTool->GetName() ); + if( aTool->GetType() == INTERACTIVE ) static_cast( aTool )->resetTransitions();