📄 log4jlogger.java
字号:
/** * This file is part of the jcrontab package * Copyright (C) 2001-2003 Israel Olalla * * 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 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., 59 Temple Place, Suite 330, Boston, * MA 02111-1307, USA * * For questions, suggestions: * * iolalla@yahoo.com * */package org.jcrontab.log;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.InputStream;import java.io.IOException;import java.util.Properties;import org.apache.log4j.PropertyConfigurator;import org.jcrontab.Crontab;/** * This is the Log4jLogger as an example about how to use Log4J to log in * Jcrontab * @author $Author: iolalla $ * @version $Revision: 1.7 $ */public class Log4JLogger implements Logger { private static org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger("jcrontab"); protected InputStream createPropertiesStream(String name) throws IOException { try { InputStream stream = getClass().getResourceAsStream(name); if (stream == null) { stream = new FileInputStream(name); } return stream; } catch (FileNotFoundException fnfe) { try { org.jcrontab.data.DefaultFiles.createLog4jFile(); return new FileInputStream(name); } catch (IOException ioe) { throw ioe; } catch (Exception e) { throw new IOException("Error creating/reading default file"); } } } /** * This method does the basic initialization. */ public void init(){ String log4JProperties = Crontab.getInstance().getProperty( "org.jcrontab.log.log4J.Properties"); Properties props = new Properties(); try { final InputStream input = createPropertiesStream(log4JProperties); props.load( input ); PropertyConfigurator.configure( props ); } catch (Exception e) { System.out.println("Unable to load :" +log4JProperties + e); } } /** * This method reports a message to the log */ public void info(String message){ log.info( message ); } /** * This method reports a Exception or Error to the log */ public void error(String message, Throwable t) { log.error( message, t ); } /** * This method reports a debug level message to the log */ public void debug(String message){ log.debug( message ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -