X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c5ecb9bae08ae00e95d3c6f687415514779402d0..7cb7cf848d69e818cb3cccd656c4a34713316264:/nominatim/tools/special_phrases/importer_statistics.py diff --git a/nominatim/tools/special_phrases/importer_statistics.py b/nominatim/tools/special_phrases/importer_statistics.py index 520c77d6..9b97bca6 100644 --- a/nominatim/tools/special_phrases/importer_statistics.py +++ b/nominatim/tools/special_phrases/importer_statistics.py @@ -1,5 +1,5 @@ """ - Contain the class which handle statistics for the + Contains the class which handles statistics for the import of special phrases. """ import logging @@ -24,9 +24,6 @@ class SpecialPhrasesImporterStatistics(): self.tables_deleted = 0 self.tables_ignored = 0 self.global_phrases_invalid = 0 - self.global_phrases_added = 0 - self.global_phrases_ignored = 0 - self.global_phrases_deleted = 0 def _set_lang_values_to_0(self): """ @@ -34,8 +31,6 @@ class SpecialPhrasesImporterStatistics(): lang to 0. """ self.lang_phrases_invalid = 0 - self.lang_phrases_added = 0 - self.lang_phrases_ignored = 0 def notify_one_phrase_invalid(self): """ @@ -45,29 +40,6 @@ class SpecialPhrasesImporterStatistics(): self.lang_phrases_invalid += 1 self.global_phrases_invalid += 1 - def notify_one_phrase_added(self): - """ - Add +1 to the count of entries - added to the db. - """ - self.lang_phrases_added += 1 - self.global_phrases_added += 1 - - def notify_one_phrase_ignored(self): - """ - Add +1 to the count of ignored - entries as it was already in the db. - """ - self.lang_phrases_ignored += 1 - self.global_phrases_ignored += 1 - - def notify_one_phrase_deleted(self): - """ - Add +1 to the count of phrases deleted - from the database. - """ - self.global_phrases_deleted += 1 - def notify_one_table_created(self): """ Add +1 to the count of created tables. @@ -92,23 +64,21 @@ class SpecialPhrasesImporterStatistics(): Print stats for the whole import process and reset all values. """ - LOG.warning('====================================================================') - LOG.warning('Final statistics of the import:') - LOG.warning('- %s phrases were invalid.', self.global_phrases_invalid) + LOG.info('====================================================================') + LOG.info('Final statistics of the import:') + LOG.info('- %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(' 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) if self.tables_deleted > 0: - LOG.warning(' They were deleted as they are not valid anymore.') + LOG.info(' They were deleted as they are not valid anymore.') + + if self.global_phrases_invalid > 0: + LOG.warning('%s phrases were invalid and have been skipped during the whole process.', + self.global_phrases_invalid) self._set_global_values_to_0() @@ -117,14 +87,15 @@ class SpecialPhrasesImporterStatistics(): Print stats for the current lang and then reset lang values. """ - 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('====================================================================') + if self.lang_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.lang_phrases_ignored) - LOG.warning('- %s phrases were added to the database', self.lang_phrases_added) - LOG.warning('====================================================================') + LOG.warning('%s phrases were invalid and have been skipped for the import of lang %s.', + self.lang_phrases_invalid, lang) self._set_lang_values_to_0()