From 31c44330e84afced357174384d427608efff1569 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 23 Aug 2022 13:40:11 +0200 Subject: [PATCH] gogs: Lower unnecessarily verbose logging statement --- swh/lister/gogs/lister.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/swh/lister/gogs/lister.py b/swh/lister/gogs/lister.py index f52784b..8c5a72d 100644 --- a/swh/lister/gogs/lister.py +++ b/swh/lister/gogs/lister.py @@ -92,9 +92,7 @@ class GogsLister(Lister[GogsListerState, GogsListerPage]): cred = random.choice(self.credentials) username = cred.get("username") self.api_token = cred["password"] - logger.warning( - "Using authentication credentials from user %s", username or "???" - ) + logger.info("Using authentication credentials from user %s", username) else: # Raises an error on Gogs, or a warning on Gitea self.on_anonymous_mode()