From 819f75e17c6ed6d8ba1d6a0a7e4d74e43cb2772f Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Tue, 23 Jan 2024 16:06:07 -0500 Subject: [PATCH] Remove paste sheet instance path debugging output. --- eeschema/tools/sch_editor_control.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/eeschema/tools/sch_editor_control.cpp b/eeschema/tools/sch_editor_control.cpp index 7de722d71a..e082fcc9b6 100644 --- a/eeschema/tools/sch_editor_control.cpp +++ b/eeschema/tools/sch_editor_control.cpp @@ -1478,8 +1478,6 @@ SCH_SHEET_PATH SCH_EDITOR_CONTROL::updatePastedSheet( const SCH_SHEET_PATH& aPas sheetPath.push_back( aSheet ); aPastedSheetsSoFar->push_back( sheetPath ); - wxLogDebug( wxS( "Adding pasted sheet path: %s from clipboard path: %s." ), - sheetPath.Path().AsString(), aClipPath.AsString() ); if( aSheet->GetScreen() == nullptr ) return sheetPath; // We can only really set the page number but not load any items @@ -1938,9 +1936,6 @@ int SCH_EDITOR_CONTROL::Paste( const TOOL_EVENT& aEvent ) while( hierarchy.PageNumberExists( pageNum ) ) pageNum = wxString::Format( "%d", ++page ); - wxLogDebug( wxS( "Setting sheet path %s instance." ), - pastedSheet.Path().AsString() ); - SCH_SHEET_INSTANCE sheetInstance; sheetInstance.m_Path = pastedSheet.Path();