From 80cca0d6bfbe7915bd6ac87aaedb7f5b7a396a93 Mon Sep 17 00:00:00 2001 From: Ian Roddis Date: Fri, 11 Feb 2022 13:12:08 -0400 Subject: [PATCH] removing cout statement --- libdaggy/src/executors/task/DaggyRunnerTaskExecutor.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/libdaggy/src/executors/task/DaggyRunnerTaskExecutor.cpp b/libdaggy/src/executors/task/DaggyRunnerTaskExecutor.cpp index a494e24..e6083fa 100644 --- a/libdaggy/src/executors/task/DaggyRunnerTaskExecutor.cpp +++ b/libdaggy/src/executors/task/DaggyRunnerTaskExecutor.cpp @@ -182,8 +182,6 @@ TaskFuture DaggyRunnerTaskExecutor::execute(DAGRunID runID, auto response = HTTP_REQUEST(url, taskToJSON(task), "POST"); if (response.code == 200) break; - std::cout << "Submitting " << taskName << " expected code 200, got " - << response.code << '[' << response.body << "]\n"; std::this_thread::sleep_for(250ms); }