Back to project page alogger.
The source code is released under:
GNU General Public License
If you think the Android project alogger 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 com.jug6ernaut.android.logging; import java.util.logging.Formatter; import java.util.logging.LogRecord; //from w w w.j a v a 2s . c o m public class JSONFormatter extends Formatter { /** * A Custom format implementation that is designed for brevity. */ public String format(LogRecord record) { return JSONLogWriter.toJSONString(record); } }