print msg when config.json is missing

This commit is contained in:
Marc Beyer 2022-01-25 19:20:06 +01:00
parent f0e431bf6c
commit 5e9a09fc7d

View File

@ -17,7 +17,7 @@ public class ConfigLoader {
objectMapper.findAndRegisterModules();
return objectMapper.readValue(jsonString, Config.class);
} catch (IOException e) {
e.printStackTrace();
System.out.println("config.json missing");
}
return null;
}