From 471c36101cee88c4f2232a4d33b33b3df35371e4 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 2 Jan 2019 01:54:56 +0000 Subject: [PATCH] Add a missing variable to the UDP protocol trace output --- MessageClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MessageClient.cpp b/MessageClient.cpp index d35cc338e..7ccfbc3ce 100644 --- a/MessageClient.cpp +++ b/MessageClient.cpp @@ -241,7 +241,7 @@ void MessageClient::impl::parse_message (QByteArray const& msg) QColor fg; // default invalid color bool last_only {false}; in >> call >> bg >> fg >> last_only; - TRACE_UDP ("HighlightCallsign call:" << call << "bg:" << bg << "fg:" << fg); + TRACE_UDP ("HighlightCallsign call:" << call << "bg:" << bg << "fg:" << fg << "last only:" << last_only); if (check_status (in) != Fail && call.size ()) { Q_EMIT self_->highlight_callsign (QString::fromUtf8 (call), bg, fg, last_only);