diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2016-12-25 17:44:25 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2016-12-25 17:44:25 +0100 |
commit | c2d405116b7b68808930eebf7e7b076d8dd17030 (patch) | |
tree | 66046ef85eb872e7473494e6c482e86b59247945 /psycopg/connection_int.c | |
parent | b77de74f72b2f062094d126b36d73d041546f971 (diff) | |
download | psycopg2-c2d405116b7b68808930eebf7e7b076d8dd17030.tar.gz |
Dropped testing print
Diffstat (limited to 'psycopg/connection_int.c')
-rw-r--r-- | psycopg/connection_int.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/psycopg/connection_int.c b/psycopg/connection_int.c index c8880b1..e5c6579 100644 --- a/psycopg/connection_int.c +++ b/psycopg/connection_int.c @@ -504,7 +504,6 @@ dsn_has_replication(char *pgdsn) connopts = PQconninfoParse(pgdsn, NULL); for(ptr = connopts; ptr->keyword != NULL; ptr++) { - printf("keyword %s val %s\n", ptr->keyword, ptr->val); if(strcmp(ptr->keyword, "replication") == 0 && ptr->val != NULL) ret = 1; } |