from the following code snippet from (j-t-c\jk\native2\common\jk_logger.c):
static int JK_METHOD jk2_logger_file_init(jk_env_t *env,jk_logger_t *_this )
{
FILE *oldF=(FILE *)_this->logger_private;
FILE *f=NULL;
jk_workerEnv_t *workerEnv=env->getByName( env, "workerEnv" );
if( _this->name==NULL ) {
_this->name="${serverRoot}/logs/jk2.log";
}
....
I can see that even if I don't want a jk log, I will get one?
I know I can turn all logging of through my log4j.properties file, but what
If I don't even
want the file appearing all together?
Should it be like this?
Just a question...
I would like to just stop the file from appearing, even if it is empty.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]