comparison src/goodjava/logger/ListLayout.java @ 2014:1cdc12cdcfa2 default tip

make logging more accessible
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 25 Sep 2025 23:41:41 -0600
parents 6fc083e1d08c
children
comparison
equal deleted inserted replaced
2013:0f14207596b3 2014:1cdc12cdcfa2
1 package goodjava.logger; 1 package goodjava.logger;
2 2
3 3
4 public final class ListLayout implements Layout { 4 public final class ListLayout implements Layout {
5 private final Layout[] layouts; 5 public final Layout[] layouts;
6 6
7 public ListLayout(final Object... args) { 7 public ListLayout(final Object... args) {
8 layouts = new Layout[args.length]; 8 layouts = new Layout[args.length];
9 for( int i=0; i<args.length; i++ ) { 9 for( int i=0; i<args.length; i++ ) {
10 Object obj = args[i]; 10 Object obj = args[i];