changed log level on what really should not be a warning message
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 18 May 2007 17:31:44 +0000 (17:31 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 18 May 2007 17:31:44 +0000 (17:31 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@901 9efc2488-bf62-4759-914b-345cdb29e865

src/libstack/osrf_prefork.c
src/libtransport/transport_session.c

index 31548e9..0a3e54f 100644 (file)
@@ -586,7 +586,7 @@ void prefork_child_wait( prefork_child* child ) {
                if( errno == EAGAIN ) n = 0;
 
       if( errno == EPIPE ) {
-         osrfLogWarning(OSRF_LOG_MARK, "C child attempted read on broken pipe, exiting...");
+         osrfLogDebug(OSRF_LOG_MARK, "C child attempted read on broken pipe, exiting...");
          break;
       }
 
index 43bdcbc..3654e6a 100644 (file)
@@ -119,7 +119,7 @@ int session_wait( transport_session* session, int timeout ) {
        int ret =  socket_wait( session->sock_mgr, timeout, session->sock_id );
 
        if( ret ) {
-               osrfLogWarning(OSRF_LOG_MARK, "socket_wait returned error code %d", ret);
+               osrfLogDebug(OSRF_LOG_MARK, "socket_wait returned error code %d", ret);
                session->state_machine->connected = 0;
        }
        return ret;