use warning for problem with random alias default domain

This commit is contained in:
Son NK 2020-09-10 09:32:51 +02:00
parent bde6f661e4
commit a660a05f83
1 changed files with 1 additions and 1 deletions

View File

@ -490,7 +490,7 @@ class User(db.Model, ModelMixin, UserMixin):
or not custom_domain.verified
or custom_domain.user_id != self.id
):
LOG.exception("Problem with %s default random alias domain", self)
LOG.warning("Problem with %s default random alias domain", self)
return FIRST_ALIAS_DOMAIN
return custom_domain.domain