We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdf895f + 8977e66 commit fe5ca2dCopy full SHA for fe5ca2d
src/main/java/com/egoshard/intellij/k8s/ui/ConfigEditor.java
@@ -139,7 +139,7 @@ public static void validate(RunConfigurationBase config) {
139
Optional.ofNullable(config.getUserData(SETTING_KEY)).ifPresent(settings -> {
140
if (settings.isEnabled()) {
141
settings.getEntries().stream().filter(entry -> !entry.validate()).findFirst()
142
- .ifPresent(entry -> logger.error(String.format(MSG_PATH_INVALID, entry.getPath())));
+ .ifPresent(entry -> logger.warn(String.format(MSG_PATH_INVALID, entry.getPath())));
143
}
144
});
145
0 commit comments