RE: options and different loggers

2002-07-06 Thread Richard Doust
It means that the root logger's level is set to DEBUG (which basically means that all logging requests will produce output) and the A1 appender is being placed into its appender set. The A1 appender is defined in the next statement in the configuration properties file. Does that help? -Origin

options and different loggers

2002-07-06 Thread Robert Mark Bram
Howdy all! Can anyone tell me what this option does please: log4j.rootLogger=DEBUG, A1 I am constructing a Jini application - I will have a client and service that will (in the completed application) reside on different machines. For now, however, they will both run on the same machine,

Re: Help required Urgently: og4j:WARN No appenders could be found for logger issue

2002-07-06 Thread Ceki Gülcü
At 02:10 06.07.2002 +0530, you wrote: >The extension are for the following > >4) custom level off below info and on above info. This might bite you very hard in the future. It is a bad idea to extend Logger to support new level types. You should use the Logger.log method instead as in: logge

Re: Help required Urgently: og4j:WARN No appenders could be found for logger issue

2002-07-06 Thread Ceki Gülcü
Have you tested your Logger subclass properly? At 02:10 06.07.2002 +0530, you wrote: >Environment : >WAS 4.0, Log4j 1.2rc1 > >I am repeatedly getting the message "log4j:WARN No appenders could be >found for logger", I have double checked my config file, unable to find >any issues with it. >Her

Re: to be deprecated or not to be deprecated ?

2002-07-06 Thread Ceki Gülcü
The Category class was not marked with the @deprecated javadoc tag in order to make the transition from log4j 1.1 to 1.2 as painless as possible. At some point in time, the Category class will be marked as @deprecated. At 22:19 05.07.2002 +0200, you wrote: >Hello, > >I have an application with