RE: Weird memory consumption

2007-03-22 Thread Wozniak, Marcin
Our log4j configuration. RollingFileAppenders or FileAppender (no matter what sort of appender we use, symptoms are the same). Rolling appender 3 files, 1GB each. Every appender work i asynchronous mode (buffer is set to 1), but it is worth mentioning that when we've configured synchronous

RE: Weird memory consumption

2007-03-22 Thread Wozniak, Marcin
Thanx Andrew anyway. I got your point. There may be something wrong between JVN and OS. However, as i said i would not blame JVM for any leaks (especially that in a meantime we've change JVM version couple of times). -Original Message- From: Andrew Marlow [mailto:[EMAIL PROTECTED] Sent:

Introduction

2007-03-22 Thread Jim . McEvoy
Hello, My name is Jim McEvoy and I am a recent addition to the log4j user list. Like all people who come onto this forum, I have questions. Hopefully someday soon, I can provide answers as well. Is anyone on this list familiar with Jdeveloper, and if so I have a question as pertains to log

Re: Introduction

2007-03-22 Thread James Stauffer
A few lines of the log file might be helpful. BTW no included log4j appenders create files with random names so if log4j is creating that it is using a custom appender. On 3/22/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, My name is Jim McEvoy and I am a recent addition to the log4j

Re: Introduction

2007-03-22 Thread Jim . McEvoy
James, Thanks for your response. The log file looks like this: AM MomVer=0 cd/ TXN Def=1 New=0 Lok=2/ CONN/ VO VO sig=1174524892108 da=1 It=1 St=0 ac=0 Ex=1 Def=model.MainScreenView Name=MainScreenView exArgs ct=1 arg ![CDATA[]]

Re: Logging Domains

2007-03-22 Thread Curt Arnold
On Mar 21, 2007, at 8:05 PM, Paul Smith wrote: I've just thought of an idea I'd like to share. Most likely someone has thought of this before, and probably implemented it, but just in case... public class Foo { ... private static Logger LOG = Logger.getLogger(Foo.class,

Re: Introduction

2007-03-22 Thread James Stauffer
I don't use the XML appender for log4j but that doesn't look like it is from log4j. On 3/22/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: James, Thanks for your response. The log file looks like this: AM MomVer=0 cd/ TXN Def=1 New=0 Lok=2/ CONN/ VO VO sig=1174524892108 da=1

Re: Logging Domains

2007-03-22 Thread Paul Smith
What if you had multiple calls to getLogger with the same logger name, but different sets of domain names? An unlikely scenario if you were using class name based loggers, but could be common if you used other naming strategies. I can't see a way around that one, but most people use

Re: Logging Domains

2007-03-22 Thread James Stauffer
What if you had loggers named normally. Then to create your view, create a separate appender and attach it to the loggers for that view. i.e. Attach a DAOAppender to all DAO loggers and then you can change the logging for that view by setting the threshold on DAOAppender. That would tend to put

Custom appender question about getRenderedMessage()

2007-03-22 Thread Bret Schuhmacher
Hi, I'm trying to extend RollingFileAppender. I want to manipulate the *complete* message that's logged by prepending something to the message just before it's dumped into the file. My custom class's append() tries to create a new LoggingEvent from the given LoggingEvent, prepending my text to