From a660a05f831bc772ec3bd13625a7e81da4d52360 Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Thu, 10 Sep 2020 09:32:51 +0200 Subject: [PATCH] use warning for problem with random alias default domain --- app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models.py b/app/models.py index e80d8276..27c464e4 100644 --- a/app/models.py +++ b/app/models.py @@ -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