Skip to content

Commit

Permalink
[Fetch] do not speak warning diagnostics to avoid noisy fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
708yamaguchi committed Sep 11, 2019
1 parent 156b47b commit d94d16c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsk_fetch_robot/jsk_fetch_startup/scripts/warning.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self):
self.diagnostics_speak_thread = {}
self.auto_undocking = False
self.diagnostics_list = []
if rospy.get_param("~speak_warn", True):
if rospy.get_param("~speak_warn", False):
self.diagnostics_list.append(DiagnosticStatus.WARN)
if rospy.get_param("~speak_error", True):
self.diagnostics_list.append(DiagnosticStatus.ERROR)
Expand Down

0 comments on commit d94d16c

Please sign in to comment.