diff --git a/src/net/Client.cpp b/src/net/Client.cpp index f6543b4e..cb1a53f8 100644 --- a/src/net/Client.cpp +++ b/src/net/Client.cpp @@ -407,7 +407,10 @@ void Client::parse(char *line, size_t len) LOG_DEBUG("[%s:%u] received (%d bytes): \"%s\"", m_url.host(), m_url.port(), len, line); if (len < 32 || line[0] != '{') { - LOG_ERR("[%s:%u] JSON decode failed", m_url.host(), m_url.port()); + if (!m_quiet) { + LOG_ERR("[%s:%u] JSON decode failed", m_url.host(), m_url.port()); + } + return; }