From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: location@lists.ipfire.org Subject: [PATCH 8/8] location-importer.in: avoid log spam for too small networks Date: Wed, 21 Oct 2020 14:47:43 +0000 Message-ID: <20201021144743.18083-8-peter.mueller@ipfire.org> In-Reply-To: <20201021144743.18083-1-peter.mueller@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3937111167632571499==" List-Id: --===============3937111167632571499== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Peter M=C3=BCller --- src/python/location-importer.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/location-importer.in b/src/python/location-importer.in index 9946e64..036fff8 100644 --- a/src/python/location-importer.in +++ b/src/python/location-importer.in @@ -494,7 +494,7 @@ class CLI(object): return False =20 if network.prefixlen > 24: - log.info("Skipping network too small to be publicly announced: %s" % net= work) + log.debug("Skipping network too small to be publicly announced: %s" % ne= twork) return False =20 if str(network.network_address) =3D=3D "0.0.0.0": @@ -507,7 +507,7 @@ class CLI(object): return False =20 if network.prefixlen > 48: - log.info("Skipping network too small to be publicly announced: %s" % net= work) + log.debug("Skipping network too small to be publicly announced: %s" % ne= twork) return False =20 if str(network.network_address) =3D=3D "::": --=20 2.20.1 --===============3937111167632571499==--