From 89907136faf38f0e6edf04c0dcf2dc1b9adb25d9 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 2 Oct 2014 10:15:12 -0700 Subject: [PATCH] one more debug line for script redirect --- domain-server/src/DomainServer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/domain-server/src/DomainServer.cpp b/domain-server/src/DomainServer.cpp index 8f93c7a13e..8b8874c73b 100644 --- a/domain-server/src/DomainServer.cpp +++ b/domain-server/src/DomainServer.cpp @@ -1089,6 +1089,8 @@ bool DomainServer::handleHTTPRequest(HTTPConnection* connection, const QUrl& url scriptURL.setPath(URI_ASSIGNMENT + "/scripts/" + uuidStringWithoutCurlyBraces(pendingData->getAssignmentUUID())); + qDebug() << "Serving" << scriptURL << "for assignment with ID" << matchingUUID; + // have the HTTPManager serve the appropriate script file return _httpManager.handleHTTPRequest(connection, scriptURL); }