mturk       2002/07/08 06:35:02

  Modified:    jk/native2/common jk_vm_default.c
  Log:
  no message
  
  Revision  Changes    Path
  1.21      +5 -5      jakarta-tomcat-connectors/jk/native2/common/jk_vm_default.c
  
  Index: jk_vm_default.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/common/jk_vm_default.c,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- jk_vm_default.c   5 Jul 2002 08:06:51 -0000       1.20
  +++ jk_vm_default.c   8 Jul 2002 13:35:02 -0000       1.21
  @@ -237,7 +237,7 @@
       }
   
       if( jkvm->mbean->debug > 0 ) 
  -        env->l->jkLog(env, env->l, JK_LOG_INFO,  
  +        env->l->jkLog(env, env->l, JK_LOG_DEBUG,  
                         "jni.loadJvm() %s symbols resolved\n",
                         jkvm->jvm_dll_path); 
       
  @@ -273,8 +273,8 @@
          appropriate interface. There is no need to call the AttachCurrentThread.
       */
       if( err == 0) {
  -        if( jkvm->mbean->debug > 0 )
  -            env->l->jkLog(env, env->l, JK_LOG_INFO, "vm.attach() allready 
attached\n");
  +        if( jkvm->mbean->debug >= 0 )
  +            env->l->jkLog(env, env->l, JK_LOG_DEBUG, "vm.attach() allready 
attached\n");
           return (void *)rc;        
       }
       /* The error code is either JNI_OK (allready attached) or JNI_EDETACHED.
  @@ -295,8 +295,8 @@
                         "vm.attach() error %d\n", err);
           return NULL;
       }
  -    if( jkvm->mbean->debug > 0 )
  -        env->l->jkLog(env, env->l, JK_LOG_INFO, "vm.attach() ok\n");
  +    if( jkvm->mbean->debug >= 0 )
  +        env->l->jkLog(env, env->l, JK_LOG_DEBUG, "vm.attach() ok\n");
       return (void *)rc;
   }
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to