Re: Removing log4j messages from my logs

2005-10-25 Thread Vladimir Corovic
Here are sample messages: . *** configurationOptionStr=null ** End of LogManager static initializer log4j:INFO Creating new logger [main] in repository [default]. log4j:INFO Creating new logger [org.apache.log4j] in repository

making a XML Layout

2005-10-25 Thread Charith Fernando
Hi all, I want to make a XML layout in log4j a customized XML Layout... how can I do this? As an example I wanna get the following output start first data/data /first first data/data /first /start For each log that I make

RE: WELCOME to log4j-user@logging.apache.org

2005-10-25 Thread Bender Heri
Elaine Log4j has nothing to do with registry. This is java world, that means crossplattform world. Everything is configured by files and nothing by windows registry. You can, of course, read registry values out from your program and configure or reconfigure log4j by code. But that's up to

RE: WELCOME to log4j-user@logging.apache.org

2005-10-25 Thread Elaine White
Thank you. Where would I find out about reading registry values out from my program? Elaine -Original Message- From: Bender Heri [mailto:[EMAIL PROTECTED] Sent: 25 October 2005 12:12 To: Log4J Users List Subject: RE: WELCOME to log4j-user@logging.apache.org Elaine Log4j has nothing to

RE: WELCOME to log4j-user@logging.apache.org

2005-10-25 Thread Rakesh Patel
Hi Elaine, I believe the new preferences API in Java uses the registry on windows (and a text file on Unix). It's the preferred way of storing values in a non-platfrom specific way Cheers Rakesh -Original Message- From: Elaine White [mailto:[EMAIL PROTECTED] Sent: 25 October 2005

Re: Removing log4j messages from my logs

2005-10-25 Thread James Stauffer
Which version of log4j are you using? If you are using 1.3, then those messages will go away by the time it is finally released. On 10/25/05, Vladimir Corovic [EMAIL PROTECTED] wrote: Here are sample messages: . ***

Useless INFO messages on stdout with 1.3alpha6

2005-10-25 Thread Laurent
Hi, Log4j 1.3alpha6 is printing out a huge number of lines starting with log4j:INFO Creating new logger on stdout. How can I prevent this, or make log4j use itself instead of stdout to print its debug messages? (which would be much cleaner, although this could be dangerous if log4j messes itself

Re: Removing log4j messages from my logs

2005-10-25 Thread Vladimir Corovic
I tried both 1.3alpha-6 and 1.2.9. When it is expected for 1.3 to be officially released? Thanks! - Original Message - From: James Stauffer [EMAIL PROTECTED] To: Log4J Users List log4j-user@logging.apache.org Sent: Tuesday, 25 October, 2005 15:35 Subject: Re: Removing log4j messages

RE: Useless INFO messages on stdout with 1.3alpha6

2005-10-25 Thread Rakesh Patel
I had this problem, there's a bug in the latest release. I built from source and it been fixed. -Original Message- From: Laurent [mailto:[EMAIL PROTECTED] Sent: 25 October 2005 14:44 To: log4j-user@logging.apache.org Subject: Useless INFO messages on stdout with 1.3alpha6 Hi, Log4j

Re: Removing log4j messages from my logs

2005-10-25 Thread James Stauffer
1.2.9 should not print those extra messages when log4j.debug is false. I don't know when 1.3 will be released but I know that is periodically discussed so check the archives. The dev list archives may have more info. On 10/25/05, Vladimir Corovic [EMAIL PROTECTED] wrote: I tried both

Chainsaw and log4j1.3 DBReciever?

2005-10-25 Thread Darren Hartford
There was discussion several months ago regarding the new DBAppender in 1.3 (or might have been called something else). Is there any momentum on using Chainsaw with these DB-appenders? -D - To unsubscribe, e-mail: [EMAIL

RE: Chainsaw and log4j1.3 DBReciever?

2005-10-25 Thread Scott Deboy
Chainsaw V2 supports all receivers (both DBReceiver which processes events generated by DBAppender, as well as CustomSQLDBReceiver, which will process logging events from your own schema - where you specify the sql). I haven't checked DBReceiver, but I use CustomSQLDBReceiver here at work and it

NoSuchFieldError with Log4j 1.3

2005-10-25 Thread Laurent
Hi, I just upgraded to the svn version of log4j (from 1.2.11) and I am now getting this error: Logger: org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/mywebapp].[jsp] Message: Servlet.service() for servlet jsp threw exception Throwable: java.lang.NoSuchFieldError: DEBUG at

Re: NoSuchFieldError with Log4j 1.3

2005-10-25 Thread Laurent
Laurent wrote: Throwable: java.lang.NoSuchFieldError: DEBUG at org.apache.taglibs.log.DebugTag.getPriority(DebugTag.java:72) at org.apache.taglibs.log.LoggerTag.doAfterBody(LoggerTag.java:107) It's working with the CVS version of the taglib. Sorry about that, next time I'll think before I

log4j2me

2005-10-25 Thread log4j2me
Hello, We are Witmate development team. Witmate is a pure java logic/rule engine executable from j2me to j2se/ee with jsr-94 compatibility. We developed a log4j edition for j2me platform for our product, and want to contribute it as open source project. Could you list our project in your

Preventing File Append using log4j

2005-10-25 Thread Gerard Menezes
Hi, I'm using log4j and need to prevent File Append from happening. I need the logging to be overwritten everytime it logs. I've tried setting param name=Append value=false/ in the appender configuration, but it does not work. Any suggestions ? Thanks -Gerard