Skip to content

Commit

Permalink
auth: don't log absense of GSS-TSIG functionality at such a high leve…
Browse files Browse the repository at this point in the history
…l, use DEBUG
  • Loading branch information
omoerbeek committed Nov 12, 2024
1 parent 73d895c commit 3dbee6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdns/tkey.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ void PacketHandler::tkeyHandler(const DNSPacket& p, std::unique_ptr<DNSPacket>&
{
tkey_out->d_error = 21; // BADALGO
#ifdef ENABLE_GSS_TSIG
g_log<<Logger::Error<<"GSS-TSIG request but feature not enabled by enable-gss-tsigs setting"<<endl;
g_log<<Logger::Debug<<"GSS-TSIG request but feature not enabled by enable-gss-tsigs setting"<<endl;
#else
g_log<<Logger::Error<<"GSS-TSIG request but feature not compiled in"<<endl;
g_log<<Logger::Debug<<"GSS-TSIG request but feature not compiled in"<<endl;
#endif
}
} else if (tkey_in.d_mode == 5) { // destroy context
Expand Down

0 comments on commit 3dbee6a

Please sign in to comment.