Package org.jvnet.glassfish.comms.admin.reporter

Examples of org.jvnet.glassfish.comms.admin.reporter.AccessLog


     * Initialize the ConfigAdapter. After this all the internal Config model
     * is in sync with the domain config model.
     */
    public void initAccessLog() {
        try {
            AccessLog accessLogInstance = AccessLog.getInstance();
            ConfigFactory.instance().activateConfiguration(accessLogInstance);
            AccessLog instance = AccessLog.getInstance();
            if (instance != null && instance.getSipAccessLogEnabled())
                instance.openAccessLog();
        } catch (Exception e) {

        }
    }
View Full Code Here


                        log.log(Level.WARNING, e.getMessage(), e);
                    }
                }
            }
            // close the sip access log
            AccessLog instance = AccessLog.getInstance();
            if (instance != null && instance.getSipAccessLogEnabled())
                instance.closeAccessLog();
        } catch (Exception e) {
            if (log.isLoggable(Level.WARNING)) {
                log.log(Level.WARNING, "sip.integration.sip_stack_teardown_failure_continue", "Reason unknown.");
                log.log(Level.WARNING, e.getMessage(), e);
            }
View Full Code Here

TOP

Related Classes of org.jvnet.glassfish.comms.admin.reporter.AccessLog

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.