Skip to content

Commit

Permalink
Fix uploading of currupt logs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKlimaj authored and bkueng committed Sep 25, 2024
1 parent a16c3e7 commit d5c6a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/plot_app/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def load_ulog_file(file_name):
'vehicle_thrust_setpoint', 'vehicle_torque_setpoint',
'failsafe_flags']
try:
ulog = ULog(file_name, msg_filter, disable_str_exceptions=False)
ulog = ULog(file_name, msg_filter, disable_str_exceptions=True)
except FileNotFoundError:
print("Error: file %s not found" % file_name)
raise
Expand Down

0 comments on commit d5c6a45

Please sign in to comment.