You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2002/07/08 15:41:13 UTC

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_un.c

mturk       2002/07/08 06:41:13

  Modified:    jk/native2/common jk_channel_un.c
  Log:
  no message
  
  Revision  Changes    Path
  1.13      +5 -5      jakarta-tomcat-connectors/jk/native2/common/jk_channel_un.c
  
  Index: jk_channel_un.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/common/jk_channel_un.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- jk_channel_un.c	10 Jun 2002 21:55:06 -0000	1.12
  +++ jk_channel_un.c	8 Jul 2002 13:41:13 -0000	1.13
  @@ -160,7 +160,7 @@
           strcpy(socketInfo->unix_addr.sun_path,  socketInfo->file );
   
           if( ch->mbean->debug > 0 )
  -            env->l->jkLog(env, env->l, JK_LOG_INFO,
  +            env->l->jkLog(env, env->l, JK_LOG_DEBUG,
                             "channelUn.init(): create AF_UNIX  %s\n", socketInfo->file );
       } else {
           env->l->jkLog(env, env->l, JK_LOG_ERROR, "channelUn.init(): "
  @@ -263,7 +263,7 @@
           }
           
           if( ch->mbean->debug > 0 ) 
  -            env->l->jkLog(env, env->l, JK_LOG_INFO,
  +            env->l->jkLog(env, env->l, JK_LOG_DEBUG,
                             "channelUn.open(): create unix socket %s %d\n", socketInfo->file, unixsock );
           
           if (connect(unixsock,(struct sockaddr *)&(socketInfo->unix_addr),
  @@ -277,7 +277,7 @@
       }
   
       if( ch->mbean->debug > 0 ) 
  -        env->l->jkLog(env, env->l, JK_LOG_INFO,
  +        env->l->jkLog(env, env->l, JK_LOG_DEBUG,
                         "channelUn.open(): connect unix socket %d %s\n", unixsock, socketInfo->file );
       /* store the channel information */
       endpoint->sd=unixsock;
  @@ -334,7 +334,7 @@
           this_time = write(unixsock, (char *)b + sent , len - sent);
   
           if( ch->mbean->debug > 0 ) 
  -            env->l->jkLog(env, env->l, JK_LOG_INFO,
  +            env->l->jkLog(env, env->l, JK_LOG_DEBUG,
                             "channel.apr:send() write() %d %d %s\n", this_time, errno,
                             strerror( errno));
           if(0 == this_time) {
  @@ -436,7 +436,7 @@
       }
   
       if( ch->mbean->debug > 0 ) 
  -        env->l->jkLog(env, env->l, JK_LOG_INFO,
  +        env->l->jkLog(env, env->l, JK_LOG_DEBUG,
                         "channelUn.receive(): Received len=%d type=%d\n",
                         blen, (int)msg->buf[hlen]);
       return JK_OK;
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>