From 2d79c8b23bdee866af53be9418c99b20419a397c Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 3 Dec 2024 15:05:51 +0100 Subject: Add --edi-verbose option --- contrib/edioutput/Transport.cpp | 2 +- contrib/edioutput/Transport.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'contrib') 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(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 #include #include #include -#include #include #include #include -- cgit v1.2.3