From 05d7e3e77d78904d504bd20e61c2bb3c41cd8a0d Mon Sep 17 00:00:00 2001 From: Paul Millar Date: Sun, 26 Oct 2014 12:07:00 +0100 Subject: [PATCH] remove hardcoded "PhantomJS is launching GhostDriver..." message Apart from being undesirable that debugging messages are always written to stdout, the information is redundant as a similar message is logged at debug level. https://github.com/ariya/phantomjs/issues/12681 --- src/phantom.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/phantom.cpp b/src/phantom.cpp index 16e3bd04..a597696a 100644 --- a/src/phantom.cpp +++ b/src/phantom.cpp @@ -196,7 +196,6 @@ bool Phantom::execute() if (m_config.isWebdriverMode()) { // Remote WebDriver mode requested qDebug() << "Phantom - execute: Starting Remote WebDriver mode"; - Terminal::instance()->cout("PhantomJS is launching GhostDriver..."); if (!Utils::injectJsInFrame(":/ghostdriver/main.js", QString(), m_scriptFileEnc, QDir::currentPath(), m_page->mainFrame(), true)) { m_returnValue = -1; return false;