aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/edioutput/Transport.cpp2
-rw-r--r--contrib/edioutput/Transport.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/contrib/edioutput/Transport.cpp b/contrib/edioutput/Transport.cpp
index cbff6d4..4979e93 100644
--- a/contrib/edioutput/Transport.cpp
+++ b/contrib/edioutput/Transport.cpp
@@ -195,7 +195,7 @@ void Sender::write(const AFPacket& af_packet)
else if (auto tcp_dest = dynamic_pointer_cast<edi::tcp_client_t>(dest)) {
const auto error_stats = tcp_senders.at(tcp_dest.get())->sendall(af_packet);
- if (error_stats.has_seen_new_errors) {
+ if (m_conf.verbose and error_stats.has_seen_new_errors) {
fprintf(stderr, "TCP output %s:%d has %zu reconnects: most recent error: %s\n",
tcp_dest->dest_addr.c_str(),
tcp_dest->dest_port,
diff --git a/contrib/edioutput/Transport.h b/contrib/edioutput/Transport.h
index 6a3f229..c62545c 100644
--- a/contrib/edioutput/Transport.h
+++ b/contrib/edioutput/Transport.h
@@ -31,11 +31,9 @@
#include "AFPacket.h"
#include "PFT.h"
#include "Socket.h"
-#include <vector>
#include <chrono>
#include <map>
#include <unordered_map>
-#include <stdexcept>
#include <fstream>
#include <cstdint>
#include <thread>