diff --git a/src/plugins/coreplugin/editormanager/systemeditor.cpp b/src/plugins/coreplugin/editormanager/systemeditor.cpp
index fc2e20e3f49cf80e438a653ddea20722b6d5b03e..169aaaaa1b26bc6ce2003143fbfe9ad85ad92b28 100644
--- a/src/plugins/coreplugin/editormanager/systemeditor.cpp
+++ b/src/plugins/coreplugin/editormanager/systemeditor.cpp
@@ -33,8 +33,6 @@
 #include <QtCore/QUrl>
 #include <QtGui/QDesktopServices>
 
-#include <QtDebug>
-
 using namespace Core;
 using namespace Core::Internal;
 
@@ -64,7 +62,6 @@ bool SystemEditor::startEditor(const QString &fileName, QString *errorMessage)
     QUrl url;
     url.setPath(fileName);
     url.setScheme(QLatin1String("file"));
-    qDebug() << url;
     if (!QDesktopServices::openUrl(url)) {
         if (errorMessage)
             *errorMessage = tr("Could not open url %1.").arg(url.toString());