Skip to content

Commit

Permalink
textlog message can be up to 4MB
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Jul 15, 2023
1 parent 2816b38 commit 020a078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flydra_core/flydra_core/data_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class TextLogDescription(PT.IsDescription):
mainbrain_timestamp = PT.FloatCol(pos=0)
cam_id = PT.StringCol(255, pos=1)
host_timestamp = PT.FloatCol(pos=2)
message = PT.StringCol(255, pos=3)
message = PT.StringCol(4*1024*1024, pos=3) # 4 MB message max


class CamSyncInfo(PT.IsDescription):
Expand Down

0 comments on commit 020a078

Please sign in to comment.