Package org.ribax.logging

Examples of org.ribax.logging.Logger


    @SuppressWarnings("unused")
    private Logger reqlog, resplog;
    private void readLogging(Element logging, String typename) {
       
        Logger log;
        Element e;
       
        if ("REQUEST".equals(typename))
            log = reqlog = RequestLog.getInstance(null);
        else
            log = resplog = ResponseLog.getInstance(null);

        // read logging levels after creating the GUI components
        if ((e = logging.getChild("levels")) != null)                        
            log.readLevels(e);
    }
View Full Code Here

TOP

Related Classes of org.ribax.logging.Logger

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.