Merge pull request #18159 from jacksontj/2014.7

Change log line to trace
This commit is contained in:
Mike Place 2014-11-17 15:49:22 -07:00
commit 0104abc5db

View File

@ -2359,7 +2359,7 @@ def import_json():
for fast_json in ('ujson', 'yajl', 'json'):
try:
mod = __import__(fast_json)
log.info('loaded {0} json lib'.format(fast_json))
log.trace('loaded {0} json lib'.format(fast_json))
return mod
except ImportError:
continue