diff --git a/mail_sendgrid/models/mail_mail.py b/mail_sendgrid/models/mail_mail.py index d2ad5498..bb62fccd 100644 --- a/mail_sendgrid/models/mail_mail.py +++ b/mail_sendgrid/models/mail_mail.py @@ -19,7 +19,7 @@ try: from sendgrid.helpers.mail import Email, Attachment, CustomArg, Content, \ Personalization, Substitution, Mail, Header except ImportError: - _logger.warning("ImportError raised while loading module.") + _logger.info("ImportError raised while loading module.") _logger.debug("ImportError details:", exc_info=True) diff --git a/mail_sendgrid/models/sendgrid_template.py b/mail_sendgrid/models/sendgrid_template.py index 91a4ace7..d636fef6 100644 --- a/mail_sendgrid/models/sendgrid_template.py +++ b/mail_sendgrid/models/sendgrid_template.py @@ -15,7 +15,7 @@ _logger = logging.getLogger(__name__) try: import sendgrid except ImportError: - _logger.warning("ImportError raised while loading module.") + _logger.info("ImportError raised while loading module.") _logger.debug("ImportError details:", exc_info=True) diff --git a/mail_sendgrid_mass_mailing/models/mail_mail.py b/mail_sendgrid_mass_mailing/models/mail_mail.py index a27723e7..1ce2ce6b 100644 --- a/mail_sendgrid_mass_mailing/models/mail_mail.py +++ b/mail_sendgrid_mass_mailing/models/mail_mail.py @@ -9,7 +9,7 @@ _logger = logging.getLogger(__name__) try: from sendgrid.helpers.mail import TrackingSettings, SubscriptionTracking except ImportError: - _logger.warning("ImportError raised while loading module.") + _logger.info("ImportError raised while loading module.") _logger.debug("ImportError details:", exc_info=True)