Skip to content

Commit 8ef31e5

Browse files
committed
CDRIVER-531 remove debugging printfs
1 parent d4a56e7 commit 8ef31e5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/mongoc/mongoc-cluster.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2019,18 +2019,14 @@ bool
20192019
has_host (const mongoc_host_list_t *hl,
20202020
const char *host_and_port)
20212021
{
2022-
printf ("has_host %s\n", host_and_port);
2023-
20242022
while (hl) {
20252023
if (!strcmp(hl->host_and_port, host_and_port)) {
2026-
printf ("\tyes\n");
20272024
return true;
20282025
}
20292026

20302027
hl = hl->next;
20312028
}
20322029

2033-
printf ("\tno\n");
20342030
return false;
20352031
}
20362032

0 commit comments

Comments
 (0)