We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8da90d4 commit c2abb0cCopy full SHA for c2abb0c
lib/perfdata/gelfwriter.cpp
@@ -126,10 +126,8 @@ void GelfWriter::AssertOnWorkQueue()
126
127
void GelfWriter::ExceptionHandler(boost::exception_ptr exp)
128
{
129
- Log(LogCritical, "GelfWriter", "Exception during Graylog Gelf operation: Verify that your backend is operational!");
130
-
131
- Log(LogDebug, "GelfWriter")
132
- << "Exception during Graylog Gelf operation: " << DiagnosticInformation(std::move(exp));
+ Log(LogCritical, "GelfWriter") << "Exception during Graylog Gelf operation: " << DiagnosticInformation(exp, false);
+ Log(LogDebug, "GelfWriter") << "Exception during Graylog Gelf operation: " << DiagnosticInformation(exp, true);
133
134
DisconnectInternal();
135
}
0 commit comments