view src/goodjava/logger/DateLayout.java @ 1643:8d751af51b9d

fix not_found_hander
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 02 Jan 2022 00:42:58 -0700
parents 6fc083e1d08c
children
line wrap: on
line source

package goodjava.logger;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;


public final class DateLayout implements Layout {
	private final Date date = new Date();
	private final DateFormat dateFormat;

	public DateLayout(String pattern) {
		dateFormat = new SimpleDateFormat(pattern);
	}

	public synchronized String format(LoggingEvent event) {
		date.setTime(event.time);
		return dateFormat.format(date);
	}
}