Skip to content

Commit

Permalink
Change logging annotation for TLS in campaignd
Browse files Browse the repository at this point in the history
  • Loading branch information
loonycyborg committed May 6, 2021
1 parent 070d119 commit a4f9024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/campaignd/server.cpp
Expand Up @@ -472,7 +472,7 @@ void server::load_config()

std::ostream& operator<<(std::ostream& o, const server::request& r)
{
o << (utils::holds_alternative<tls_socket_ptr>(r.sock) ? "TLS" : "") << '[' << r.addr << ' ' << r.cmd << "] ";
o << '[' << (utils::holds_alternative<tls_socket_ptr>(r.sock) ? "+" : "") << r.addr << ' ' << r.cmd << "] ";
return o;
}

Expand Down

0 comments on commit a4f9024

Please sign in to comment.