Package org.jnode.debug

Examples of org.jnode.debug.RemoteAppender


            // FIXME ... we cannot do this for TCP because it triggers a
            // kernel panic.  I suspect that this is something to do with
            // the TCP protocol stack itself trying to log debug messages.
            if (udp) {
                final Logger root = Logger.getRootLogger();
                root.addAppender(new RemoteAppender(remoteOut, null));
            }
        } catch (ConnectException ex) {
            err.format(err_connect, ex.getLocalizedMessage());
            exit(1);
        } catch (UnknownHostException ex) {
View Full Code Here

TOP

Related Classes of org.jnode.debug.RemoteAppender

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.