Commit 8f529b08 authored by Jérome Perrin's avatar Jérome Perrin

getClassFromName: do not log for now as this floods the log

parent be785367
......@@ -156,7 +156,7 @@ def getClassFromName(dotted_name):
if dotted_name.startswith('Dream'):
class_name = dotted_name.split('.')[-1]
new_dotted_name = 'dream.simulation.%s.%s' % (class_name, class_name)
logger.info(("Old style name %s used, using %s instead" % (dotted_name, new_dotted_name)))
#logger.info(("Old style name %s used, using %s instead" % (dotted_name, new_dotted_name)))
dotted_name = new_dotted_name
return resolve(dotted_name)
......
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