logmessaged: remove the redundant nested print (#32872)

remove the redundant nested print
pull/32875/head
Dean Lee 10 months ago committed by GitHub
parent 406bcd79e1
commit cec8d5a305
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      system/logmessaged.py

@ -31,7 +31,7 @@ def main() -> NoReturn:
if len(record) > 2*1024*1024: if len(record) > 2*1024*1024:
print("WARNING: log too big to publish", len(record)) print("WARNING: log too big to publish", len(record))
print(print(record[:100])) print(record[:100])
continue continue
# then we publish them # then we publish them

Loading…
Cancel
Save