mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2026-03-19 03:49:04 +00:00
use logger.info to display command line result
This commit is contained in:
@@ -16,7 +16,7 @@ public class ConfigParser {
|
||||
|
||||
public static Config read(String location) {
|
||||
|
||||
LOGGER.debug("reading config from " + location);
|
||||
LOGGER.info("reading config from " + location);
|
||||
|
||||
ObjectMapper mapper = new ObjectMapper();
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ public abstract class AbstractGenerator {
|
||||
|
||||
@SuppressWarnings("static-method")
|
||||
public File writeToFile(String filename, String contents) throws IOException {
|
||||
LOGGER.debug("writing file " + filename);
|
||||
LOGGER.info("writing file " + filename);
|
||||
File output = new File(filename);
|
||||
|
||||
if (output.getParent() != null && !new File(output.getParent()).exists()) {
|
||||
|
||||
Reference in New Issue
Block a user