Package org.apache.openjpa.lib.log

Examples of org.apache.openjpa.lib.log.AbstractLog


    // Start LogFactory implementation
    // This is static so both the test and the logger share
    private static List<String> messages = new ArrayList<String>();
    public Log getLog(String channel) {
        return new AbstractLog() {

            protected boolean isEnabled(short logLevel) {
                return true;
            }
View Full Code Here


        messages.clear();
    }

    // Start LogFactory implementation
    public Log getLog(String channel) {
        return new AbstractLog() {

            protected boolean isEnabled(short logLevel) {
                return true;
            }
View Full Code Here

TOP

Related Classes of org.apache.openjpa.lib.log.AbstractLog

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.