Package io.undertow.server.handlers.accesslog

Examples of io.undertow.server.handlers.accesslog.DefaultAccessLogReceiver


            if (!directory.mkdirs()){
                throw UndertowLogger.ROOT_LOGGER.couldNotCreateLogDirectory(directory);
            }
        }
        try {
            logReceiver = new DefaultAccessLogReceiver(worker.getValue(), directory, filePrefix, fileSuffix);
        } catch (IllegalStateException e) {
            throw new StartException(e);
        }
    }
View Full Code Here

TOP

Related Classes of io.undertow.server.handlers.accesslog.DefaultAccessLogReceiver

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.