From 39ab0e020424e78823ef6a3b0866de31b417679a Mon Sep 17 00:00:00 2001 From: BriceCG <46228654+BriceCG@users.noreply.github.com> Date: Wed, 6 Sep 2023 15:39:26 +0300 Subject: [PATCH] Update company.py Change Payload from info to debug as they are huge and not needed in production --- l10n_fr_chorus_account/models/company.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n_fr_chorus_account/models/company.py b/l10n_fr_chorus_account/models/company.py index da0c5db2f..762f74638 100644 --- a/l10n_fr_chorus_account/models/company.py +++ b/l10n_fr_chorus_account/models/company.py @@ -251,7 +251,7 @@ def chorus_post(self, api_params, url_path, payload, session=None): if session is None: token = self._get_token(api_params) session = OAuth2Session(api_params["oauth_id"], token=token) - logger.info( + logger.debug( "Chorus API POST request to %s with login %s", url, api_params["login"] ) logger.debug("Payload of the Chorus POST request: %s", payload)