Removed d6cage reload module warning messages

Previously, d6cage would log errors when the same module
was loaded more than once.

It is unclear whether this behavior is useful, and it
produced many errors during testing.  This change
logs a warning instead of an error when a module
is reloaded.

Closes-bug: 1360443
Change-Id: Id1add83b2fa8b7432ac5cc5d3156a13af92ba858
This commit is contained in:
Tim Hinrichs 2014-10-06 08:19:35 -07:00
parent eb514b112a
commit c082e6d396
1 changed files with 2 additions and 2 deletions

View File

@ -163,8 +163,8 @@ class d6Cage(deepSix):
def loadModule(self, name, filename):
if name in sys.modules:
self.log_error(
"error loading module '%s': module already exists" % name)
# self.log_error(
# "error loading module '%s': module already exists" % name)
return
try:
self.log_info("loading module: %s" % name)