[chirp_devel] [PATCH] Reduce additional spew by forcing bandplan log to info
# HG changeset patch # User Kosta A. ve7kcy@gmail.com # Date 1624429345 25200 # Tue Jun 22 23:22:25 2021 -0700 # Branch misc # Node ID d156d3a46b7e6cbce985dc14186f0e07b5d3016b # Parent f586574bc8786fd6bef1e5d54d08d381c81edd47 Reduce additional spew by forcing bandplan log to info.
diff --git a/chirp/ui/bandplans.py b/chirp/ui/bandplans.py --- a/chirp/ui/bandplans.py +++ b/chirp/ui/bandplans.py @@ -47,7 +47,7 @@ # Check for duplicates. duplicates = [x for x in plan.BANDS if x == band] if len(duplicates) > 1: - LOG.warn("Bandplan %s has duplicates %s" % + LOG.info("Bandplan %s has duplicates %s" % (name, duplicates)) # Add repeater inputs. rpt_input = band.inverse()
participants (1)
-
Kosta A.