- LOG.warning('====================================================================')
- LOG.warning('Final statistics of the import:')
- LOG.warning('- %s phrases were invalid.', self.global_phrases_invalid)
- if self.global_phrases_invalid > 0:
- LOG.warning(' Those invalid phrases have been skipped.')
- LOG.warning('- %s phrases were ignored as they are already in the database',
- self.global_phrases_ignored)
- LOG.warning('- %s phrases were added to the database', self.global_phrases_added)
- LOG.warning('- %s phrases were deleted from the database', self.global_phrases_deleted)
- if self.global_phrases_deleted > 0:
- LOG.warning(' They were deleted as they are not valid anymore.')
- LOG.warning('- %s tables were ignored as they already exist on the database',
- self.tables_ignored)
- LOG.warning('- %s tables were created', self.tables_created)
- LOG.warning('- %s tables were deleted from the database', self.tables_deleted)
+ LOG.info('====================================================================')
+ LOG.info('Final statistics of the import:')
+ LOG.info('- %s phrases were invalid.', self.invalids)
+ if self.invalids > 0:
+ LOG.info(' Those invalid phrases have been skipped.')
+ LOG.info('- %s tables were ignored as they already exist on the database',
+ self.tables_ignored)
+ LOG.info('- %s tables were created', self.tables_created)
+ LOG.info('- %s tables were deleted from the database', self.tables_deleted)