Log SRU auth params in GFS
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 11 Apr 2011 10:14:41 +0000 (12:14 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 11 Apr 2011 10:14:41 +0000 (12:14 +0200)
src/seshigh.c

index 0a3f9fa..1d709aa 100644 (file)
@@ -540,6 +540,9 @@ static int srw_bend_init(association *assoc, Z_SRW_diagnostic **d, int *num, Z_S
             len = strlen(sr->username) + 1;
             if (sr->password) 
                 len += strlen(sr->password) + 2;
+            yaz_log(log_requestdetail, "username=%s password-len=%ld",
+                    sr->username, (long) 
+                    (sr->password ? strlen(sr->password) : 0));
             auth->which = Z_IdAuthentication_open;
             auth->u.open = (char *) odr_malloc(assoc->decode, len);
             strcpy(auth->u.open, sr->username);