To create a custom Formatter
we need to extend the java.util.logging.Formatter
abstract class and implements the format(LogRecord)
method. In the method then we can format the log message stored in the LogRecord
to match our need.
The java.util.logging.Formatter
class also have the getHead(Handler)
and getTail(Handler)
which can be overridden to add a head and a tail to our log message.
package org.kodejava.util.logging;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.logging.*;
public class LogCustomFormatter {
public static void main(String[] args) {
Logger logger = Logger.getLogger(LogCustomFormatter.class.getName());
logger.setUseParentHandlers(false);
MyFormatter formatter = new MyFormatter();
ConsoleHandler handler = new ConsoleHandler();
handler.setFormatter(formatter);
logger.addHandler(handler);
logger.info("Example of creating custom formatter.");
logger.warning("A warning message.");
logger.severe("A severe message.");
}
}
class MyFormatter extends Formatter {
// Create a DateFormat to format the logger timestamp.
private static final DateFormat df = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss.SSS");
public String format(LogRecord record) {
StringBuilder builder = new StringBuilder(1000);
builder.append(df.format(new Date(record.getMillis()))).append(" - ");
builder.append("[").append(record.getSourceClassName()).append(".");
builder.append(record.getSourceMethodName()).append("] - ");
builder.append("[").append(record.getLevel()).append("] - ");
builder.append(formatMessage(record));
builder.append("\n");
return builder.toString();
}
public String getHead(Handler h) {
return super.getHead(h);
}
public String getTail(Handler h) {
return super.getTail(h);
}
}
Below is an output produced by the custom formatter above.
08/10/2021 07:55:55.153 - [org.kodejava.util.logging.LogCustomFormatter.main] - [INFO] - Example of creating custom formatter.
08/10/2021 07:55:55.164 - [org.kodejava.util.logging.LogCustomFormatter.main] - [WARNING] - A warning message.
08/10/2021 07:55:55.164 - [org.kodejava.util.logging.LogCustomFormatter.main] - [SEVERE] - A severe message.
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024
Line 38: you probably meant to append
\n
.Thank you for the correction.
Why did you explicitly create a new
ConsoleHandler
? Why can’t you re-use the handler it has? for example:^ this doesn’t work for me. but I don’t know why. 🙁
I see some bad practices here.
DateFormat
is not thread-safe – useDateTimeFormatter
(Java 8) or create new instance every time you need it (which probabably isn’t too good either 😉 ).Use
System.lineSeparator()
instead of “\n”! You don’t need (and shouldn’t) overridegetHead()
andgetTail()
methods.StringBuilder
can be used in a lot more “streamlined” manner (append().append().apend()
) – you do it, but only partially.Last, but not least, as Rodrigo mentioned, the formatter itself should be in separate class file.
By the way, for case of this example it probably would be good to add handling throwables as well.
Hi Tomasz,
Thanks for the comments to improve the example above.