Format Modifier
|
Left
Justify
|
Min
Width
|
Max
Width
|
Comment
|
%20m
|
false
|
20
|
none
|
Left pad with spaces if the message
is less than 20 characters long.
|
%-20m
|
true
|
20
|
none
|
Right pad with spaces if the message
is less than 20 characters long.
|
%.30m
|
n/a
|
none
|
30
|
Truncate from the beginning if the
message is longer than 30 characters.
|
%20.30m
|
false
|
20
|
30
|
Left pad with spaces if the message
is less than 20 characters long.
Truncate from the beginning if the
message is longer than 30 characters.
|
Date Element
|
Log4s
Formatting Option |
VA Smalltalk
Formatting Option |
Input
|
Output
|
2-digit year
|
y
|
%y
|
2011
|
11
|
year
|
yyyy
|
%Y
|
2011
|
2011
|
Month with no leading zeros
|
M
|
%z
|
07
|
7
|
month
|
MM
|
%m
|
07
|
07
|
Month short name
|
MMM
|
%b
|
07
|
Jul
|
Month long name
|
MMMM+
|
%B
|
07
|
July
|
day of month
|
dd
|
%d
|
05
|
05
|
day of month with leading space
|
d
|
%e
|
05
|
space 5
|
day of month with no leading zeros
|
f
|
%f
|
05
|
5
|
day of week in month (1-7), Monday=1
|
u
|
%u
|
8-07-2011
|
7
|
day of week (0-6) in month, Sunday = 0
|
w
|
%w
|
8-07-2011
|
0
|
day of year
|
D
|
%j
|
8-17-2011
|
229
|
day of week short name
|
E
|
%a
|
8-15-2011
|
Mon
|
day of week short name
|
EE
|
%a
|
8-15-2011
|
Mon
|
day of week short name
|
EEE
|
%a
|
8-15-2011
|
Mon
|
day of week long name
|
EEEE+
|
%A
|
8-15-2011
|
Monday
|
Time Element
|
Log4s
Formatting Option |
VA Smalltalk
Formatting Option |
Input
|
Output
|
am/pm
|
a
|
%P
|
08:15:07
|
am
|
hour in day (0-23), no leading zeros
|
H
|
%k
|
08:15:07
|
8
|
Hour in day (0-23)
|
HH
|
%H
|
08:15:07
|
08
|
hour in am/pm (1-12), no leading zeros
|
h
|
%l (small l)
|
18:15:07
|
6
|
hour in am/pm (1-12)
|
hh
|
%I (capital I)
|
18:15:07
|
06
|
minutes
|
mm
|
%M
|
08:15:07
|
15
|
seconds
|
ss
|
%S
|
08:15:07
|
07
|
milliseconds
|
SSS
|
%_
|
08:15:07,017
|
017
|
Input
|
Pattern
|
Output
|
8-28-1989 8:15:07 AM
|
%d
|
28 Aug 1989 08:15:07,000
|
8-28-1989 8:15:07 AM
|
%d{yyyy-MM-dd}
|
1989-08-28
|
8-07-1989 8:15:07 AM
|
%d{M-f-yyyy}
|
8-7-1989
|
8-07-1989 8:15:07 AM
|
%d{M-d-yyyy}
|
8- 7-1989
|
8-28-1989 8:15:07 AM
|
%d{dd MMM yyyy HH:mm:ss a}
|
8-28-1989 8:15:07 am
|
8-28-1989 8:15:07 AM
|
%d{yyyy_MMM_dd EE HH:mm:ss}
|
1989_Aug_28 Mon 08:15:07
|
8-28-1989 8:15:07 AM
|
%d{yyyy_MMM_dd EEEE HH:mm:ss}
|
1989_Aug_28 Monday 08:15:07
|
8-28-1989 8:15:07 AM
|
%d(D)
|
240
|
8-28-1989 8:15:07 AM
|
%d{HH:mm:ss,SSS}
|
20:15:07,000
|
8-28-1989 8:15:07 AM
|
%d{yyyy-MMM-dd}
|
1989-Aug-28
|
8-28-1989 8:15:07 AM
|
%d{yyyy-MMMM-dd}
|
1989-August-28
|
8-28-1989 8:15:07 AM
|
%d{yy-MMM-dd}
|
89-Aug-28
|
8-28-1989 8:15:07 AM
|
%d{-->yy-MMM-dd<--}
|
-->89-Aug-28<--
|