From dd02d8264392dbc0924735297341f5b57fed0008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 15 Aug 2018 09:55:23 +0200 Subject: [PATCH] json cells: don't log on empty URLs (#25692) --- combo/data/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/combo/data/models.py b/combo/data/models.py index a346135..ba398f9 100644 --- a/combo/data/models.py +++ b/combo/data/models.py @@ -1081,8 +1081,6 @@ class JsonCellBase(CellBase): continue extra_context[data_key + '_url'] = url if not url: - logger = logging.getLogger(__name__) - logger.warning('templated URL (%s) is empty', data_url_dict['url']) continue try: json_response = utils.requests.get(url, -- 2.18.0