From ec7608680e959b46c88e58ca4d2aef6c153084c7 Mon Sep 17 00:00:00 2001 From: Nathan Nichols Date: Wed, 28 Jul 2021 13:15:26 -0500 Subject: [PATCH] remove unneeded logs --- src/etl/ETLSource.h | 2 -- src/main.cpp | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/etl/ETLSource.h b/src/etl/ETLSource.h index b419f99a..99b4bc89 100644 --- a/src/etl/ETLSource.h +++ b/src/etl/ETLSource.h @@ -348,7 +348,6 @@ public: boost::beast::websocket::stream>( boost::asio::make_strand(ioc))) { - std::cout << "making plain" << std::endl; } void @@ -383,7 +382,6 @@ public: boost::beast::tcp_stream>>>( boost::asio::make_strand(ioc), *sslCtx)) { - std::cout << "MAKING SSL" << std::endl; } void diff --git a/src/main.cpp b/src/main.cpp index 0302c68a..86d50560 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -211,8 +211,6 @@ main(int argc, char* argv[]) // The server uses the balancer to forward RPCs to a rippled node. // The balancer itself publishes to streams (transactions_proposed and // accounts_proposed) - if(!ctxRef) - std::cout << "NO WORK" << std::endl; auto balancer = ETLLoadBalancer::make_ETLLoadBalancer( *config, ioc, ctxRef, backend, subscriptions, ledgers);