Skip to content

Commit

Permalink
logmessaged: remove the redundant nested print (commaai#32872)
Browse files Browse the repository at this point in the history
remove the redundant nested print
  • Loading branch information
deanlee authored Jun 30, 2024
1 parent 406bcd7 commit cec8d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/logmessaged.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main() -> NoReturn:

if len(record) > 2*1024*1024:
print("WARNING: log too big to publish", len(record))
print(print(record[:100]))
print(record[:100])
continue

# then we publish them
Expand Down

0 comments on commit cec8d5a

Please sign in to comment.