From 8e5147e6b467d02dda74c339397de7119366b133 Mon Sep 17 00:00:00 2001
From: Simon Oehrl <oehrl@vr.rwth-aachen.de>
Date: Sun, 5 Apr 2020 17:21:09 +0200
Subject: [PATCH] Remove debug output

---
 http_server.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/http_server.cpp b/http_server.cpp
index 81a478b..36123c2 100644
--- a/http_server.cpp
+++ b/http_server.cpp
@@ -101,10 +101,7 @@ web::http::http_response HttpServer::GetSpikes(
     for (auto spike = spikes_begin; spike != spikes_end; ++spike, ++index) {
       gids[index] = spike->gid;
       simulation_times[index] = spike->simulation_time;
-
-      std::cout << population_node_ids.count(spike->gid) << " " << gids[index] << "\n";
     }
-    std::cout << std::endl;
   }
 
   response.set_body(web::json::value::object(
-- 
GitLab