Package org.owasp.esapi

Examples of org.owasp.esapi.Logger


public class ESAPILogging {

    public static void main(String[] args) {

        try {
            Logger logger = ESAPI.getLogger("ESAPILogging");
           
            logger.warning(Logger.SECURITY_FAILURE, "This is a warning.");
            logger.always(Logger.SECURITY_AUDIT, "This is an audit log. It always logs.");
        } catch(Throwable t) {
            System.err.println("Caught: " + t.getClass().getName() +
                               "; exception msg: " + t);
            t.printStackTrace(System.err);
        }
View Full Code Here

TOP

Related Classes of org.owasp.esapi.Logger

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.