diff --git a/3rdparty/python-console/Console.cpp b/3rdparty/python-console/Console.cpp index 51057385..c844ae62 100644 --- a/3rdparty/python-console/Console.cpp +++ b/3rdparty/python-console/Console.cpp @@ -72,10 +72,6 @@ void Console::handleReturnKeyPress( ) QString line = getLine( ); -#ifndef NDEBUG - std::cout << line.toStdString( ) << "\n"; -#endif - m_parseHelper.process( line.toStdString( ) ); if ( m_parseHelper.buffered( ) ) { @@ -232,7 +228,6 @@ void Console::autocomplete( ) { append(it->c_str()); } - std::cout << width() << "\n"; setTextColor( NORMAL_COLOR ); } }