+
+ Format modifier |
+ left justify |
+ minimum width |
+ maximum width |
+ comment |
+
+
+ %20logger |
+ false |
+ 20 |
+ none |
+
+
+ Left pad with spaces if the logger name is less than 20
+ characters long.
+
+ |
+
+
+ %-20logger |
+ true |
+ 20 |
+ none |
+
+
+ Right pad with spaces if the logger
+ name is less than 20 characters long.
+
+ |
+
+
+ %.30logger |
+ NA |
+ none |
+ 30 |
+
+
+ Truncate from the beginning if the logger
+ name is longer than 30 characters.
+
+ |
+
+
+ %20.30logger |
+ false |
+ 20 |
+ 30 |
+
+
+ Left pad with spaces if the logger name is shorter than 20
+ characters. However, if logger name is longer than 30 characters,
+ then truncate from the beginning.
+
+ |
+
+
+ %-20.30logger |
+ true |
+ 20 |
+ 30 |
+
+
+ Right pad with spaces if the logger name is shorter than 20
+ characters. However, if logger name is longer than 30 characters,
+ then truncate from the beginning.
+
+ |
+
+