From 287c6d166e1ae96797b9b0d5683e2a72233a1d52 Mon Sep 17 00:00:00 2001 From: Rebecka Gulliksson Date: Thu, 22 Sep 2016 08:51:43 +0200 Subject: [PATCH] Change log statement to appropriate level. --- src/alservice/al.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alservice/al.py b/src/alservice/al.py index f0db18e..40215df 100644 --- a/src/alservice/al.py +++ b/src/alservice/al.py @@ -165,7 +165,7 @@ def _split_token(self, token: str) -> list: tokens = token.split(".") if len(tokens) != 2: - LOGGER.exception("Incorrect token (%s)!", token) + LOGGER.error("Incorrect token (%s)!", token) raise ALserviceTokenError() return tokens