From 92081dba0553d1f54076b32fa65521c096cb051b Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Wed, 29 Jun 2011 19:13:11 +0200 Subject: [PATCH] Improve the failure message, make it senseful when trying to discover what a service is from telnet, and a listen port --- src/Connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connection.cpp b/src/Connection.cpp index f63b9a3..759dd7c 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -95,7 +95,7 @@ void Connection::startCommand() { SLOT(finishCommand(Response *))); m_command->start(m_arguments); } else { - QString failure = QString("Unknown command: ") + m_commandName + "\n"; + QString failure = QString("[Capybara WebKit] Unknown command: ") + m_commandName + "\n"; writeResponse(new Response(false, failure)); } m_commandName = QString();