Reduce the level of network debugging output a little.

This commit is contained in:
Jonathan Naylor
2016-02-18 19:09:10 +00:00
parent f8d6d04306
commit e11be44f79
3 changed files with 26 additions and 8 deletions

View File

@@ -162,8 +162,8 @@ bool CDStarNetwork::writePoll(const char* text)
// Include the nul at the end also
::memcpy(buffer + 5U, text, length + 1U);
if (m_debug)
CUtils::dump(1U, "D-Star Network Poll Sent", buffer, 6U + length);
// if (m_debug)
// CUtils::dump(1U, "D-Star Network Poll Sent", buffer, 6U + length);
return m_socket.write(buffer, 6U + length, m_address, m_port);
}