diff --git a/MAC/APL/MainCU/src/MACScheduler/TMSSBridge.cc b/MAC/APL/MainCU/src/MACScheduler/TMSSBridge.cc
index f4b8375d0157c967d17cfd8ab559f1efbad3f82f..d094fc4a49d8ecb00d7a852494f1b4a78b6c38c3 100644
--- a/MAC/APL/MainCU/src/MACScheduler/TMSSBridge.cc
+++ b/MAC/APL/MainCU/src/MACScheduler/TMSSBridge.cc
@@ -87,16 +87,28 @@ Json::Value TMSSBridge::getSubTasksStartingInThreeMinutes()
 
     Json::Value result;
     if(httpGETAsJson(queryStr, result))
+        LOG_INFO_STR(string("JSON data for ") << queryStr << std::endl << result.toStyledString());
+
         result = result["results"];
 
+        LOG_INFO_STR(string("JSON data for ") << queryStr << std::endl << result.toStyledString());
+
         // combine scheduled list with queuing list
         string queryStr2 = "/api/subtask/?state__value=queueing&start_time__gt=" + to_iso_extended_string(lower_limit) + "&start_time__lt=" + to_iso_extended_string(upper_limit) + "&ordering=start_time";
         Json::Value result2;
         if(httpGETAsJson(queryStr2, result2)) {
+
+            LOG_INFO_STR(string("JSON data for ") << queryStr2 << std::endl << result2.toStyledString());
+
             result2 = result2["results"];
-            result = result.append(result2);
+
+            LOG_INFO_STR(string("JSON data for ") << queryStr2 << std::endl << result2.toStyledString());
+
+            result.append(result2);
         }
 
+        LOG_INFO_STR(string("JSON data total") << std::endl << result.toStyledString());
+
         return result;
     return Json::Value("");
 }
@@ -246,6 +258,8 @@ bool TMSSBridge::httpQuery(const string& target, string &result, const string& q
     curl_global_cleanup();
 
     LOG_INFO_STR(string("[") << query_method << "] code=" << httpCode << " " << url);
+    LOG_INFO_STR(result);
+
     if (httpCode == 200) {
         return true;
     }