Skip to content

Commit 56d9430

Browse files
committed
Merge branch '3.0.0' into kotlin
2 parents 9ca8242 + 435ac22 commit 56d9430

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/swagger-codegen/src/main/java/io/swagger/codegen/MetaGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected void generate(String[] args) {
8383
if (cmd.hasOption("n")) {
8484
name = cmd.getOptionValue("n");
8585
} else {
86-
System.out.println("name is required"); //FIXME replace by LOGGER
86+
LOGGER.error("name is required");
8787
usage(options);
8888
return;
8989
}
@@ -95,7 +95,7 @@ protected void generate(String[] args) {
9595
if (cmd.hasOption("o")) {
9696
outputFolder = cmd.getOptionValue("o");
9797
} else {
98-
System.out.println("output folder is required"); // FIXME replace by LOGGER
98+
LOGGER.error("output folder is required");
9999
usage(options);
100100
return;
101101
}

0 commit comments

Comments
 (0)