- LOG.warning('====================================================================')
- LOG.warning('Statistics for the import of %s:', lang)
- LOG.warning('- %s phrases were invalid.', self.lang_phrases_invalid)
+ LOG.info('====================================================================')
+ LOG.info('Statistics for the import of %s:', lang)
+ LOG.info('- %s phrases were invalid.', self.lang_phrases_invalid)
+ if self.lang_phrases_invalid > 0:
+ LOG.info(' Those invalid phrases have been skipped.')
+ LOG.info('- %s phrases were ignored as they are already in the database',
+ self.lang_phrases_ignored)
+ LOG.info('- %s phrases were added to the database', self.lang_phrases_added)
+ LOG.info('====================================================================')
+