Adjust info logging level.
This commit is contained in:
parent
379855766c
commit
e6fbbc19e0
4 changed files with 23 additions and 17 deletions
|
@ -701,6 +701,7 @@ def main():
|
|||
|
||||
for i, (example_type, data) in enumerate(examples):
|
||||
if example_type == 'full_example':
|
||||
logging.info(data['affirmation'])
|
||||
affirmation = {
|
||||
'text': data['affirmation'],
|
||||
'parsed': data['parsed'][1],
|
||||
|
@ -724,6 +725,8 @@ def main():
|
|||
raise AssertionError('{} is not {}'.format(result, data['answer']))
|
||||
|
||||
elif example_type == 'text_example':
|
||||
logging.info(data['affirmation'])
|
||||
|
||||
show_progbar(i, total, data['affirmation'])
|
||||
affirmation = data['affirmation']
|
||||
logging.debug("Processing affirmation: {}".format(affirmation))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue