1 /* 2 * Copyright (C) The Spice Group. All rights reserved. 3 * 4 * This software is published under the terms of the Spice 5 * Software License version 1.1, a copy of which has been included 6 * with this distribution in the LICENSE.txt file. 7 */ 8 package org.codehaus.spice.loggerstore; 9 10 import java.util.logging.Formatter; 11 import java.util.logging.LogRecord; 12 13 /*** 14 * Class that extends base formatter to provide raw text output. 15 * 16 * @author Peter Donald 17 * @version $Revision: 1.1 $ $Date: 2003/11/19 18:22:43 $ 18 */ 19 public class JDK14RawFormatter 20 extends Formatter 21 { 22 public String format( final LogRecord record ) 23 { 24 return formatMessage( record ) + "\n"; 25 } 26 }

This page was automatically generated by Maven