Skip to content

Commit c308825

Browse files
committed
DbgPrint -> Dbg
1 parent b83e1f0 commit c308825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/iocore/net/SSLStats.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,12 +322,12 @@ SSLInitializeStatistics()
322322
Error("Failed to allocate stack for TLS group names");
323323
} else {
324324
constexpr int ALL_GROUPS = 1;
325-
DbgPrint(dbg_ctl_ssl, "Calling SSL_CTX_get0_implemented_groups on loaded SSL context");
325+
Dbg(dbg_ctl_ssl, "Calling SSL_CTX_get0_implemented_groups on loaded SSL context");
326326
if (SSL_CTX_get0_implemented_groups(ctx, ALL_GROUPS, group_names) != 1) {
327327
Error("Failed to get implemented groups via SSL_CTX_get0_implemented_groups");
328328
}
329329
int const num_groups = sk_OPENSSL_CSTRING_num(group_names);
330-
DbgPrint(dbg_ctl_ssl, "SSL_CTX_get0_implemented_groups returned %d groups", num_groups);
330+
Dbg(dbg_ctl_ssl, "SSL_CTX_get0_implemented_groups returned %d groups", num_groups);
331331

332332
for (int index = 0; index < num_groups; index++) {
333333
const char *name = sk_OPENSSL_CSTRING_value(group_names, index);

0 commit comments

Comments
 (0)