summaryrefslogtreecommitdiff
path: root/webproxyconn.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webproxyconn.cc')
-rw-r--r--webproxyconn.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webproxyconn.cc b/webproxyconn.cc
index d1590ca..8369417 100644
--- a/webproxyconn.cc
+++ b/webproxyconn.cc
@@ -104,7 +104,7 @@ void WebProxyConn::handleRequest(const Message &msg)
if (!trans) {
RequestHeader hdr = parseRequestHeader(msg.payload);
- qDebug() << "Starting transaction to" << hdr.host << hdr.port << (hdr.connect ? "tunnel" : "http");
+ qDebug() << "Starting transaction" << msg.transactionId << "to" << hdr.host << hdr.port << (hdr.connect ? "tunnel" : "http");
trans = new WebProxyTrans(msg.transactionId, hdr.connect, hdr.host, hdr.port, this);
connect(trans, SIGNAL(dataReceived(QByteArray)), this, SLOT(handleTransDataReceived(QByteArray)));