Back to project page GreenerGasPedal.
The source code is released under:
GNU General Public License
If you think the Android project GreenerGasPedal listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package name.nanek.greenerpedal.activity.support; // w ww . j a v a2 s . c om import java.util.logging.Formatter; import java.util.logging.LogRecord; public class MessageOnlyFormatter extends Formatter { private static final String lineSep = System.getProperty("line.separator"); public String format(LogRecord record) { StringBuilder output = new StringBuilder() .append(record.getMessage()) .append(lineSep); return output.toString(); } }