
Is there a Chainsaw equivalent for logback? I need a comprehensive GUI to view logs. Thanks. Sandeep

Hi Sandeep, Joern Huxhorn did a port of chainsaw. See [1]. Alternatively, we did a logback plugin for eclipse. See [2]. HTH, [1] http://www.qos.ch/pipermail/logback-user/2007-April/000198.html [2] http://logback.qos.ch/consolePlugin.html Jain, Sandeep wrote:
Is there a Chainsaw equivalent for logback?
I need a comprehensive GUI to view logs.
Thanks.
Sandeep
-- Ceki Gülcü Logback: The reliable, generic, fast and flexible logging framework for Java. http://logback.qos.ch

Hi guys. It would be really great if you could change the line oos = new ObjectOutputStream(new Socket(address, port).getOutputStream()); in method void connect(InetAddress address, int port) of class SocketAppenderBase with SocketAddress address=new InetSocketAddress(address, port); Socket socket=new Socket(); socket.connect(address, connectionTimeout); oos = new ObjectOutputStream(socket.getOutputStream()); using something reasonable as connectionTimeout, e.g. 1000-2000ms. connectionTimeout should be configurable, too. At the moment our webapp waits quite some time if a registered SocketServer isn't online at startup. I'd also suggest wrapping the sockets outputstream into a BufferedOutputStream, flushing it after every event. Thanks, Joern.

There is also Vigilog (http://vigilog.sourceforge.net) that can read in log files. It has no support for for logback at current, but I'm willing to add it for next version. The current release version is 1.2.1, but you can check out the soon to be released 1.3 at http://vigilog.sourceforge.net/staging/jnlp/vigilog.jnlp. It has support for log4j xml, log4j plain text and jdk logging xml files. regards, Wim Jain, Sandeep wrote:
Is there a Chainsaw equivalent for logback?
I need a comprehensive GUI to view logs.
Thanks.
Sandeep
_______________________________________________ Logback-user mailing list Logback-user@qos.ch http://qos.ch/mailman/listinfo/logback-user
-- View this message in context: http://www.nabble.com/Chainsaw-equivalent-for-logback-tf4069481.html#a122880... Sent from the Logback User mailing list archive at Nabble.com.
participants (4)
-
Ceki Gulcu
-
Jain, Sandeep
-
Joern Huxhorn
-
Wim Deblauwe