Log4j SocketServer

2002-08-27 Thread Kettal, El-Yamine
Hi, I have the following question regarding the class SocketServer.java (used to allow TCP connection): In the function main, when a connection is accepted a thread is created at the following line: new Thread(new SocketNode(socket, h)).start(); As the reference to this thread is not

Re: creating log file for each user

2002-08-27 Thread sanjayrajsoni
Do you have any clustering Issues with your MDB's? --- In [EMAIL PROTECTED], Ebersole, Steven [EMAIL PROTECTED] wrote: I do this exact same thing through JMS logging. I have a User object which acquires a per-instance Logger by doing : Logger.getLogger ( session. + getUserName() ). In

Re: problem configuring Log4j for Weblogic 6.1

2002-08-27 Thread sudhendra seshachala
Just works fine. Awesome.. thanks sudhi --- Ceki Gülcü [EMAIL PROTECTED] wrote: The warning message says otherwise. At 08:25 26.08.2002 -0700, you wrote: I am loading this property file before doing anything else. This is the first thing being loaded. thanks sudhi --- Ceki Gülcü

Re: Log4j SocketServer

2002-08-27 Thread Daniel Serodio
On Tue, 2002-08-27 at 10:18, Kettal, El-Yamine wrote: Hi, I have the following question regarding the class SocketServer.java (used to allow TCP connection): In the function main, when a connection is accepted a thread is created at the following line: new Thread(new

Logging idioms or guidelines: anyone have some?

2002-08-27 Thread MarkB
My boss is away, so I'm taking the opportuinity to clean up my code. I have a set of standards I use for style, formatting, documentation, naming etc. I also have a set of coding idioms I like to follow (Law of Demeter, code metric limits, etc). My problem is I don't yet have a set of logging

Re: Logging idioms or guidelines: anyone have some?

2002-08-27 Thread Eric Jain
So I'm interested in a best practices of logging, or a logging standard. Have a look at ISO-23544-5. Seriously, appart from being consistant I doubt there is any single best way to do it. You should of course keep in mind why exactely it is that you are logging, as this influences the

RE: Logging idioms or guidelines: anyone have some?

2002-08-27 Thread Shapira, Yoav
Hi, What you do, be consistent ;) That'll make it easier to understand and refactor later if necessary. Other than that, it's a matter of style. Sometimes it's a matter of personal style, sometimes organizational guidelines. There's an ISO standard somewhere about this, but I don't remember

pure java log4j

2002-08-27 Thread Madhav Inamti
Is there a version of log4j that is pure java. For e.g., the NTEventLogAppender requires a DLL. Is there a version that does not require any shared libraries / dll's ? Thanks, Madhav

Re: Article Info

2002-08-27 Thread Vikram Goyal
Thanks for your comments and putting it on the site Ceki. Rgs Vikram - Original Message - From: Ceki Gülcü [EMAIL PROTECTED] To: Log4J Users List [EMAIL PROTECTED] Sent: Monday, August 26, 2002 10:47 PM Subject: Re: Article Info Vikram, Here are my comments: Note that for the

Logging from shared components

2002-08-27 Thread Timothy Bennett
Hi all... I'm a newbie to this list, so apologies up front if this question has been asked and answered before. Here's a logging scenario that I'd like to configure, but can't seem to find the magic to do so. Hoping some of you here might help... Let's say I have Servlet A and Servlet B