Java: Custom message format for Logger

I was looking for a way to configure output of Logger messages. Solution is pretty simple and was found here Example: Creating custom formatters with java.util.logging. 1. add a class for custom formatting import java.util.Date; import java.util.logging.Formatter; import java.util.logging.LogRecord; /** * MyCustomFormatter formats the LogRecord as follows: * date level localized message with parameters */… Continue reading Java: Custom message format for Logger