diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index 07b78a74e36b629969998927d5772772c4811315..fe2ef9c27d02c28fe25ca23b770660f49cf5340f 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -336,11 +336,9 @@ void BreakHandler::clear() int BreakHandler::findBreakpoint(const BreakpointData &needle) { // Search a breakpoint we might refer to. - qDebug() << "NEEDLE: " << needle.toString(); for (int index = 0; index != size(); ++index) { const BreakpointData *data = at(index); // Clear hit. - qDebug() << " TEST: " << data->toString(); if (data->bpNumber == needle.bpNumber) return index; // At least at a position we were looking for.