Printing jetty output to Eclipse console window -


i developing eclipse plugin includes starting embedded jetty server, i.e.

server jetty = new server(8080); webappcontext webapp = new webappcontext("webapp", "/webapp"); webapp.setwar("path/to/webapp); jetty.sethandler(webapp); jetty.start(); program.launch("http://localhost:8080/webapp"); 

i see jetty's output in console window of eclipse contains plugin. instead jetty's output appears in eclipse developing plugin.

look logging framework of jetty.

start creating custom org.eclipse.jetty.util.log.logger can write eclipse console window of choice.

example implementations:

then, before instantiate jetty classes, call org.eclipse.jetty.util.log.log.setlog(logger log) set underlying logging framework jetty uses custom logger implementation.

good luck


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -