|
From: Swart, N. <Nic...@ca...> - 2002-12-10 09:47:24
|
I used log4j to very easily add a console GUI like this :
Logger TopLog =
Logger.getLogger("com.your.top.package");
LF5Appender gui = new LF5Appender();
gui.setName("LF5 GUI active.");
TopLog.addAppender(gui);
gui.setThreshold(Level.toLevel(MyConfig.getAsString("LoggingLevel")));
Regards
Nic
On Fri, 6 Dec 2002, Kevin & Laura Schmidt wrote:
> Hmmm, but console mode doesnt do me much good. This is a major flaw.
> I hope you can get it working. I would give it highest priority, because
most
> apps have some sort of graphical interface. I know web servers like
Tomcat
> dont have GUI, but most apps do.
I would not say that this is a *major* flaw. Yes, most *apps* have a GUI,
but isn't Wrapper primarly intended for servers and other programs
running in the backgroud (which usually don't have a GUI)?
I do, however, agree that it would be nice if Wrapper supports GUI. But I
wouldn't give this the highest priority.
|