Package com.arjuna.common.internal.util.logging.simpleLog

Examples of com.arjuna.common.internal.util.logging.simpleLog.SimpleLogFactory


                m_logFactory = new JakartaLogFactory();
            }

            // OUR IMPLEMNETATION OF .net LOGGING BYPASSES JAKARTA COMMONS LOGGING
            else if (logSystem.equals(DOTNET_LOGGER)) {
                m_logFactory = new SimpleLogFactory();
            }

            // by default, use jakarta logging ...
            else {
                m_logFactory = new JakartaLogFactory();
View Full Code Here


/*     */       }
/* 396 */       else if (logSystem.equals("jakarta")) {
/* 397 */         m_logFactory = new JakartaLogFactory();
/*     */       }
/* 401 */       else if (logSystem.equals("dotnet")) {
/* 402 */         m_logFactory = new SimpleLogFactory();
/*     */       }
/*     */       else
/*     */       {
/* 407 */         m_logFactory = new JakartaLogFactory();
/*     */       }
View Full Code Here

TOP

Related Classes of com.arjuna.common.internal.util.logging.simpleLog.SimpleLogFactory

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.