* @param throwableFormatter The throwable formatter to use
* @since 1.0.0.0
*/
public Logger(String name, Formatter<Message, Message> messageFormatter,
Formatter<Throwable, String> throwableFormatter) {
this(name, messageFormatter, throwableFormatter, new SystemOutputMessageHandler());
}