Examples of SyslogHandler


Examples of de.mnl.util.logging.SyslogHandler

                Handler myHandler = new ConsoleHandler();
                myHandler.setLevel(rootLogger.getLevel());
                myHandler.setFormatter(new DefaultLogFormatter());
                rootLogger.addHandler(myHandler);
            } else {
                SyslogHandler myHandler = new SyslogHandler();
                myHandler.setFacility(Facility.DAEMON);
                myHandler.setTag("srcpd4cu");
                myHandler.setFormatter(new SyslogFormatter());
                rootLogger.addHandler(myHandler);
            }
        }

        // Prepare schema verification
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.