Skip to content

Commit

Permalink
config: Improve tls_config logging
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Pope <ben@vectorized.io>
  • Loading branch information
BenPope committed May 7, 2021
1 parent 39a4964 commit 55fe6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/config/tls_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static inline ostream& operator<<(ostream& o, const config::key_cert& c) {
}
static inline ostream& operator<<(ostream& o, const config::tls_config& c) {
o << "{ "
<< "enabled: " << c.is_enabled()
<< "enabled: " << c.is_enabled() << " "
<< "key/cert files: " << c.get_key_cert_files() << " "
<< "ca file: " << c.get_truststore_file() << " "
<< "client_auth_required: " << c.get_require_client_auth() << " }";
Expand Down

0 comments on commit 55fe6ec

Please sign in to comment.