1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.util.log; 5 6 import java.util.logging.Formatter; 7 import java.util.logging.LogRecord; 8 9 public class PmdLogFormatter extends Formatter { 10 11 @Override 12 public String format(LogRecord record) { 13 return formatMessage(record); 14 } 15 16 }