Commit a9431176 by Calen Pennington

Log ErrorDescriptor creation as a warning

parent c1dbd985
...@@ -165,7 +165,7 @@ class CachingDescriptorSystem(MakoDescriptorSystem): ...@@ -165,7 +165,7 @@ class CachingDescriptorSystem(MakoDescriptorSystem):
inherit_metadata(module, metadata_to_inherit) inherit_metadata(module, metadata_to_inherit)
return module return module
except: except:
log.debug("Failed to load descriptor", exc_info=True) log.warning("Failed to load descriptor", exc_info=True)
return ErrorDescriptor.from_json( return ErrorDescriptor.from_json(
json_data, json_data,
self, self,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment