/*
* LIUS - Lucene Index Update and Search
* http://sourceforge.net/projects/lius/
*
* Copyright (c) 2005, Laval University Library. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package ca.ulaval.bibl.lius;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;
/**
* <p>
* Title:
* </p>
* <p>
* Description:
* </p>
* <p>
* Copyright: Copyright (c) 2005
* </p>
* <p>
* Company:
* </p>
*
* @author non attribuable
* @version 1.0
*/
public class LiusLogger {
static Logger logger = Logger.getLogger("LiusLogger");
public static void setLoggerConfigFile(String loggerConfigPath) {
PropertyConfigurator.configure(loggerConfigPath);
logger.setLevel(((Level) Level.ERROR));
}
}
|