logmessaged: remove the redundant nested print (#32872)

remove the redundant nested print
old-commit-hash: cec8d5a305
fix-exp-path
Dean Lee 10 months ago committed by GitHub
parent a822d1a745
commit 9f6dae8f44
  1. 2
      system/logmessaged.py

@ -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

Loading…
Cancel
Save