We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f9ae4b commit 6470e74Copy full SHA for 6470e74
rosbot_controller/launch/controller.launch.py
@@ -193,7 +193,9 @@ def check_if_log_is_fatal(event):
193
red_color = "\033[91m"
194
reset_color = "\033[0m"
195
msg = event.text.decode().lower()
196
- if ("fatal" in msg or "failed" in msg) and "attempt" not in msg:
+ if (
197
+ "fatal" in msg or "failed" in msg and "cyclonedds" not in msg
198
+ ) and "attempt" not in msg:
199
print(f"{red_color}Fatal error: {event.text}. Emitting shutdown...{reset_color}")
200
return EmitEvent(event=Shutdown(reason="Spawner failed"))
201
0 commit comments