/* * $Id: RecordFormatter.java,v 1.1 2005/05/25 19:56:30 ahmed Exp $ * * 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 jaligner.ui.logging; import java.util.Date; import java.util.logging.Formatter; import java.util.logging.Handler; import java.util.logging.LogRecord; /** * Logging record formatter * * @author Ahmed Moustafa (ahmed@users.sf.net) */ public class RecordFormatter extends Formatter { /** * This method is called for every log records * * @param record */ public String format(LogRecord record) { StringBuffer buffer = new StringBuffer( ); buffer.append ( new Date().toString() ); buffer.append ( " " ); buffer.append ( record.getLevel() ); buffer.append ( "\t" ); buffer.append ( record.getMessage() ); buffer.append ( "\n" ); return buffer.toString(); } /** * This method is called just after the handler using this * formatter is created * * @param handler */ public String getHead(Handler handler) { return ""; } /** * This method is called just after the handler using this * formatter is closed * * @param handler */ public String getTail(Handler handler) { return "\n"; } }