Index: postgresql-driver/postgres.c
===================================================================
RCS file: /usr/local/cvsroot/postgresql-driver/postgres.c,v
diff -u -r1.1.1.1 -r1.2
--- postgresql-driver/postgres.c	6 Jul 2002 22:36:57 -0000	1.1.1.1
+++ postgresql-driver/postgres.c	14 Aug 2002 03:14:25 -0000	1.2
@@ -1613,8 +1613,6 @@
     sql = Ns_StrDup(argv[3]);
   }
 
-  Ns_Log(Debug,"PgBindCmd: sql = %s", sql);
-
   /*
    * Parse the query string and find the bind variables.  Return
    * the sql fragments so that the query can be rebuilt with the 
@@ -1655,7 +1653,6 @@
           Ns_Free(sql);
           return TCL_ERROR;
         }
-        Ns_Log(Debug,"PgBindCmd: bind var: %s = %s", var_p->string, value);
 
         if ( strlen(value) == 0 ) {
             /*
@@ -1707,7 +1704,6 @@
     Ns_Free(sql);
     sql = Ns_DStringExport(&ds);
     Ns_DStringFree(&ds);
-    Ns_Log(Debug, "PgBindCmd: query with bind variables substituted = %s",sql);
   }
 
   string_list_free_list(bind_variables);