Move 'GraphiteWriter already connected' to debug log.

Refs #6070
This commit is contained in:
Michael Friedrich 2014-05-19 22:54:17 +02:00
parent 101bd10d62
commit 6c0b8db4bf
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ void GraphiteWriter::ReconnectTimerHandler(void)
try {
if (m_Stream) {
m_Stream->Write("\n", 1);
Log(LogWarning, "perfdata", "GraphiteWriter already connected on socket on host '" + GetHost() + "' port '" + GetPort() + "'.");
Log(LogDebug, "perfdata", "GraphiteWriter already connected on socket on host '" + GetHost() + "' port '" + GetPort() + "'.");
return;
}
} catch (const std::exception& ex) {