From c8c577f63f34f1e8d3cb2a55a97f0f761289ee2a Mon Sep 17 00:00:00 2001 From: David Vierra Date: Sun, 8 Feb 2015 01:08:45 -1000 Subject: [PATCH] Only warn about unusable installs when disabling them --- src/mcedit2/util/minecraftinstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcedit2/util/minecraftinstall.py b/src/mcedit2/util/minecraftinstall.py index 5e9c401..6452ae8 100644 --- a/src/mcedit2/util/minecraftinstall.py +++ b/src/mcedit2/util/minecraftinstall.py @@ -183,7 +183,7 @@ def _listInstalls(): install.checkUsable() yield install except MCInstallError as e: - log.exception("Not using install %s: %s", install.path, e) + log.warn("Not using install %s: %s", install.path, e) def listInstalls():