Change a few yaz_log messages
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 18 Feb 2003 11:59:14 +0000 (11:59 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 18 Feb 2003 11:59:14 +0000 (11:59 +0000)
client/Makefile.am
server/eventl.c
server/seshigh.c
zutil/zgdu.c
zutil/zoom-c.c

index d8ea521..6526147 100644 (file)
@@ -1,6 +1,6 @@
 ## Copyright (C) 1995-2000, Index Data
 ## All rights reserved.
-## $Id: Makefile.am,v 1.17 2003-02-18 10:37:08 adam Exp $
+## $Id: Makefile.am,v 1.18 2003-02-18 11:59:14 adam Exp $
 
 if ISSSL
 extra=yaz-client-ssl
@@ -14,6 +14,6 @@ yaz_client_SOURCES=client.c admin.c admin.h tabcomplete.c tabcomplete.h
 yaz_client_ssl_SOURCES=$(yaz_client_SOURCES)
 
 yaz_client_LDADD = ../lib/libyaz.la $(READLINE_LIBS)
-yaz_client_ssl_LDADD = ../lib/libyazssl.la ../lib/libyaz.la $(READLINE_LIBS) 
+yaz_client_ssl_LDADD = ../lib/libyazssl.la ../lib/libyaz.la $(READLINE_LIBS) $(SSL_LIBS)
 
 AM_CPPFLAGS=-I$(top_srcdir)/include
index cc150e7..2d528f2 100644 (file)
@@ -3,7 +3,7 @@
  * See the file LICENSE for details.
  * Sebastian Hammer, Adam Dickmeiss
  *
- * $Id: eventl.c,v 1.36 2003-02-17 21:23:31 adam Exp $
+ * $Id: eventl.c,v 1.37 2003-02-18 11:59:14 adam Exp $
  */
 
 #include <stdio.h>
@@ -74,7 +74,7 @@ int event_loop(IOCHAN *iochans)
        for (p = *iochans; p; p = p->next)
        {
             time_t w, ftime;
-            yaz_log(LOG_LOG, "fd=%d flags=%d force_event=%d",
+            yaz_log(LOG_DEBUG, "fd=%d flags=%d force_event=%d",
                     p->fd, p->flags, p->force_event);
            if (p->force_event)
                 to.tv_sec = 0;          /* polling select */
@@ -97,9 +97,9 @@ int event_loop(IOCHAN *iochans)
                     to.tv_sec = w;
             }
        }
-        yaz_log(LOG_LOG, "select start %d", to.tv_sec);
+        yaz_log(LOG_DEBUG, "select start %d", to.tv_sec);
        res = YAZ_EV_SELECT(max + 1, &in, &out, &except, &to);
-        yaz_log(LOG_LOG, "select end");
+        yaz_log(LOG_DEBUG, "select end");
        if (res < 0)
        {
            if (yaz_errno() == EINTR)
index 58af6b1..b97a9c1 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (c) 1995-2003, Index Data
  * See the file LICENSE for details.
  *
- * $Id: seshigh.c,v 1.139 2003-02-17 22:35:48 adam Exp $
+ * $Id: seshigh.c,v 1.140 2003-02-18 11:59:14 adam Exp $
  */
 
 /*
@@ -516,6 +516,8 @@ static void srw_bend_search(association *assoc, request *req,
     char *base = "Default";
     bend_search_rr rr;
     Z_External *ext;
+    
+    yaz_log(LOG_LOG, "Got SRW SearchRetrieveRequest");
 
     if (!assoc->init)
         srw_bend_init(assoc);
@@ -592,7 +594,6 @@ static void srw_bend_search(association *assoc, request *req,
                 srw_res->num_records = j;
                 if (!j)
                     srw_res->records = 0;
-                yaz_log(LOG_LOG, "got %d records", j);
             }
         }
     }
@@ -654,7 +655,6 @@ static void process_http_request(association *assoc, request *req)
                            ctype = "text/html";
                    }
                     z_HTTP_header_add(o, &hres->headers, "Content-Type", ctype);
-                   yaz_log(LOG_LOG, "OK send page %s size=%ld", fpath, sz);
                }
                fclose(f);
            }
index 49060b7..705521d 100644 (file)
@@ -2,12 +2,12 @@
  * Copyright (c) 2002-2003, Index Data.
  * See the file LICENSE for details.
  *
- * $Id: zgdu.c,v 1.5 2003-02-17 22:34:40 adam Exp $
+ * $Id: zgdu.c,v 1.6 2003-02-18 11:59:15 adam Exp $
  */
 
 #include <yaz/proto.h>
 
-#define HTTP_DEBUG 1
+#define HTTP_DEBUG 0
 
 static int decode_headers_content(ODR o, int off, Z_HTTP_Header **headers,
                                   char **content_buf, int *content_len)
index 8281575..3716c77 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (c) 2000-2003, Index Data
  * See the file LICENSE for details.
  *
- * $Id: zoom-c.c,v 1.23 2003-02-18 09:12:14 adam Exp $
+ * $Id: zoom-c.c,v 1.24 2003-02-18 11:59:15 adam Exp $
  *
  * ZOOM layer for C, connections, result sets, queries.
  */
@@ -100,7 +100,7 @@ static void set_dset_error (ZOOM_connection c, int error,
     else if (addinfo)
         c->addinfo = xstrdup(addinfo);
     if (error)
-        yaz_log(LOG_LOG, "Error %s %s:%d %s %s",
+        yaz_log(LOG_DEBUG, "Error %s %s:%d %s %s",
                 c->host_port ? c->host_port : "<>", dset, error,
                 addinfo ? addinfo : "",
                 addinfo2 ? addinfo2 : "");
@@ -2411,7 +2411,7 @@ static void handle_srw_response(ZOOM_connection c,
 
     resultset->size = 0;
 
-    yaz_log(LOG_LOG, "got SRW response OK");
+    yaz_log(LOG_DEBUG, "got SRW response OK");
     
     if (res->numberOfRecords)
         resultset->size = *res->numberOfRecords;
@@ -2445,7 +2445,6 @@ static void handle_srw_response(ZOOM_connection c,
             npr->u.databaseRecord->u.octet_aligned->size = 
             res->records[i].recordData_len;
         record_cache_add (resultset, npr, pos);
-        yaz_log(LOG_LOG, "add SRW record to cache to pos %d", pos);
     }
     if (res->num_diagnostics > 0)
     {