mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 07:23:53 +01:00
ircd::net::dns: Promote send/recv debuglog msgs to release mode.
This commit is contained in:
parent
5ce08521d5
commit
f91863716a
1 changed files with 6 additions and 6 deletions
|
@ -405,18 +405,17 @@ try
|
|||
|
||||
send_query(ep, tag);
|
||||
|
||||
#ifdef RB_DEBUG
|
||||
char buf[128];
|
||||
log::debug
|
||||
log::logf
|
||||
{
|
||||
log, "send tag:%u qtype:%u t:%u `%s' to %s",
|
||||
log, log::level::DEBUG,
|
||||
"send tag:%u qtype:%u t:%u `%s' to %s",
|
||||
tag.id,
|
||||
tag.opts.qtype,
|
||||
tag.tries,
|
||||
host(tag.hp),
|
||||
string(buf, make_ipport(ep)),
|
||||
};
|
||||
#endif
|
||||
}
|
||||
catch(const std::out_of_range &)
|
||||
{
|
||||
|
@ -666,9 +665,10 @@ ircd::net::dns::resolver::handle_reply(const ipport &from,
|
|||
string(strbuf[1], tag.server)
|
||||
};
|
||||
|
||||
log::debug
|
||||
log::logf
|
||||
{
|
||||
log, "recv tag:%u qtype:%u t:%u from %s in %s qd:%u an:%u ns:%u ar:%u",
|
||||
log, log::level::DEBUG,
|
||||
"recv tag:%u qtype:%u t:%u from %s in %s qd:%u an:%u ns:%u ar:%u",
|
||||
tag.id,
|
||||
tag.opts.qtype,
|
||||
tag.tries,
|
||||
|
|
Loading…
Reference in a new issue