# File lib/i18n/missing_translations_log_handler.rb, line 32
    def missing_translations_log_handler(exception, locale, key, options)
      if MissingTranslationData === exception
        missing_translations_logger.warn(exception.message)
        return exception.message
      else
        raise exception
      end
    end