Alon Bar-Lev has uploaded a new change for review. Change subject: utils: LocalConfig: reduce message severity if file is missing ......................................................................
utils: LocalConfig: reduce message severity if file is missing it is valid to have purely default without any configuration. Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1020675 Change-Id: If597acaf41049392a24d59549034af9e09c7616e Signed-off-by: Alon Bar-Lev <[email protected]> --- M backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/LocalConfig.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/99/20799/1 diff --git a/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/LocalConfig.java b/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/LocalConfig.java index b53dc75..a6fd162 100644 --- a/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/LocalConfig.java +++ b/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/LocalConfig.java @@ -144,7 +144,7 @@ private void loadProperties(File file) throws IOException { // Do nothing if the file doesn't exist or isn't readable: if (!file.canRead()) { - log.warn("The file \"" + file.getAbsolutePath() + "\" doesn't exist or isn't readable. Will return an empty set of properties."); + log.info("The file \"" + file.getAbsolutePath() + "\" doesn't exist or isn't readable. Will return an empty set of properties."); return; } -- To view, visit http://gerrit.ovirt.org/20799 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: If597acaf41049392a24d59549034af9e09c7616e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
