view flys-client/src/main/java/de/intevation/flys/client/server/LoggingConfigurator.java @ 3497:88feb3347aa5

Implement a ProxyServlet Implement a ProxyServlet to be able to restrict the access to the mapserver too. All queries to the provided map services should go throught this new ProxyServlet. Currently the ProxyServlet can only handle HTTP GET requests. flys-client/trunk@5221 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Thu, 16 Aug 2012 14:42:36 +0000
parents 42d6cf6e10b7
children
line wrap: on
line source
package de.intevation.flys.client.server;

import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;


public class LoggingConfigurator {

    private static final Logger logger =
        Logger.getLogger(LoggingConfigurator.class);


    private LoggingConfigurator() {
    }

    public static void init(String log4jProperties) {
        if (log4jProperties != null && log4jProperties.length() > 0) {
            PropertyConfigurator.configure(log4jProperties);
            logger.info("Log4J logging initialized.");
        }
        else {
            System.out.println("Error while setting up Log4J configuration.");
        }

        System.out.println("LoggingConfigurator.init finished");
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org