summaryrefslogtreecommitdiff
path: root/ubxtool
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2019-05-28 19:53:22 -0700
committerGary E. Miller <gem@rellim.com>2019-05-28 19:53:22 -0700
commitaf912e9c8ab0f74958bb1df2a682af6849617bfb (patch)
treea96fd57ea2e00097bb2007aa8a05545ccf2ab8e6 /ubxtool
parent608e7964b72077cab70beef9c3dcec20e7d6f52f (diff)
downloadgpsd-af912e9c8ab0f74958bb1df2a682af6849617bfb.tar.gz
ubxtool: Adjust verbosity.
Diffstat (limited to 'ubxtool')
-rwxr-xr-xubxtool5
1 files changed, 2 insertions, 3 deletions
diff --git a/ubxtool b/ubxtool
index 83af6f89..6908dd78 100755
--- a/ubxtool
+++ b/ubxtool
@@ -4529,11 +4529,10 @@ class ubx(object):
(self.class_id_s(m_class, m_id),
m_len, x_payload))
- if VERB_INFO < opts['verbosity']:
+ if VERB_INFO <= opts['verbosity']:
print("%s, len: %#x" %
(self.class_id_s(m_class, m_id), m_len))
- if VERB_RAW < opts['verbosity']:
- print("payload: %s" % x_payload)
+ print("payload: %s" % x_payload)
print("%s\n" % s_payload)
return consumed