Mercurial Hosting > luan
annotate src/goodjava/logger/DateLayout.java @ 1630:b735ed134662
add nginx and ssl for host
author | fffilimonov |
---|---|
date | Fri, 10 Dec 2021 17:08:17 +0000 |
parents | 6fc083e1d08c |
children |
rev | line source |
---|---|
1448 | 1 package goodjava.logger; |
2 | |
3 import java.text.DateFormat; | |
4 import java.text.SimpleDateFormat; | |
5 import java.util.Date; | |
6 | |
7 | |
8 public final class DateLayout implements Layout { | |
9 private final Date date = new Date(); | |
10 private final DateFormat dateFormat; | |
11 | |
12 public DateLayout(String pattern) { | |
13 dateFormat = new SimpleDateFormat(pattern); | |
14 } | |
15 | |
16 public synchronized String format(LoggingEvent event) { | |
17 date.setTime(event.time); | |
18 return dateFormat.format(date); | |
19 } | |
20 } |