diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index d53263608e8c43bc6538fb3ed84112be4fa930f3..4323ca65b3d4efc3b188c0cc3298905fda611d11 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -3707,11 +3707,11 @@ void GdbEngine::tryLoadDebuggingHelpers()
     if (m_debuggingHelperState != DebuggingHelperUninitialized)
         return;
     if (!startModeAllowsDumpers()) {
-        // load gdb macro based dumpers at least 
+        // Load at least gdb macro based dumpers.
         QFile file(_(":/gdb/gdbmacros.txt"));
         file.open(QIODevice::ReadOnly);
         QByteArray contents = file.readAll(); 
-        //qDebug() << "CONTENTS: " << contents;
+        m_debuggingHelperState = DebuggingHelperLoadTried;
         postCommand(_(contents));
         return;
     }