/* * Password Management Servlets (PWM) * http://www.pwm-project.org * * Copyright (c) 2006-2009 Novell, Inc. * Copyright (c) 2009-2017 The PWM Project * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package password.pwm.manual; import com.novell.ldapchai.ChaiUser; import org.apache.log4j.*; import password.pwm.PwmApplication; import java.util.ResourceBundle; public class TestHelper { private static final ResourceBundle resourceBundle = ResourceBundle.getBundle(TestHelper.class.getName()); public static String getParameter(final String param) { return resourceBundle.getString(param); } public static void setupLogging() { final String pwmPackageName = PwmApplication.class.getPackage().getName(); final Logger pwmPackageLogger = Logger.getLogger(pwmPackageName); final String chaiPackageName = ChaiUser.class.getPackage().getName(); final Logger chaiPackageLogger = Logger.getLogger(chaiPackageName); final Layout patternLayout = new PatternLayout("%d{yyyy-MM-dd HH:mm:ss}, %-5p, %c{2}, %m%n"); final ConsoleAppender consoleAppender = new ConsoleAppender(patternLayout); final Level level = Level.TRACE; pwmPackageLogger.addAppender(consoleAppender); pwmPackageLogger.setLevel(level); chaiPackageLogger.addAppender(consoleAppender); chaiPackageLogger.setLevel(level); } public static void t() { } }