File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
log4j-transform-cli/src/main/java/org/apache/logging/log4j/transform/cli Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ static class Convert implements Callable<Integer> {
134134 public void setInputFormat (String inputFormat ) {
135135 if (!converter .getSupportedInputFormats ().contains (inputFormat )) {
136136 throw new IllegalArgumentException ("Unsupported input format: `" + inputFormat
137- + "`.\n Run `listFormats ` for a list of supported formats." );
137+ + "`.\n Run `list-formats ` for a list of supported formats." );
138138 }
139139 this .inputFormat = inputFormat ;
140140 }
@@ -146,7 +146,7 @@ public void setInputFormat(String inputFormat) {
146146 public void setOutputFormat (String outputFormat ) {
147147 if (!converter .getSupportedOutputFormats ().contains (outputFormat )) {
148148 throw new IllegalArgumentException ("Unsupported output format: `" + outputFormat
149- + "`.\n Run `listFormats ` for a list of supported formats." );
149+ + "`.\n Run `list-formats ` for a list of supported formats." );
150150 }
151151 this .outputFormat = outputFormat ;
152152 }
You can’t perform that action at this time.
0 commit comments