From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 31 Jan 2023 13:27:53 +0000 (-0500) Subject: Change Non-fatal error initializing possible multiplexer logging to Warning X-Git-Tag: dnsdist-1.8.0-rc1~63^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=52a5a6cad1a7c6ff802a7d3ec6c2ddde50b738c9;p=thirdparty%2Fpdns.git Change Non-fatal error initializing possible multiplexer logging to Warning --- diff --git a/pdns/recursordist/rec-main.cc b/pdns/recursordist/rec-main.cc index 77512ea983..4e0b2392f1 100644 --- a/pdns/recursordist/rec-main.cc +++ b/pdns/recursordist/rec-main.cc @@ -366,12 +366,12 @@ static FDMultiplexer* getMultiplexer(Logr::log_t log) return ret; } catch (FDMultiplexerException& fe) { - SLOG(g_log << Logger::Error << "Non-fatal error initializing possible multiplexer (" << fe.what() << "), falling back" << endl, - log->error(Logr::Error, fe.what(), "Non-fatal error initializing possible multiplexer, falling back")); + SLOG(g_log << Logger::Warning << "Non-fatal error initializing possible multiplexer (" << fe.what() << "), falling back" << endl, + log->error(Logr::Warning, fe.what(), "Non-fatal error initializing possible multiplexer, falling back")); } catch (...) { - SLOG(g_log << Logger::Error << "Non-fatal error initializing possible multiplexer" << endl, - log->info(Logr::Error, "Non-fatal error initializing possible multiplexer")); + SLOG(g_log << Logger::Warning << "Non-fatal error initializing possible multiplexer" << endl, + log->info(Logr::Warning, "Non-fatal error initializing possible multiplexer")); } } SLOG(g_log << Logger::Error << "No working multiplexer found!" << endl,