From cec8d5a305c6dd91a9e7c965e23884ca9ed84aac Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Sun, 30 Jun 2024 08:34:46 +0800 Subject: [PATCH] logmessaged: remove the redundant nested print (#32872) remove the redundant nested print --- system/logmessaged.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/logmessaged.py b/system/logmessaged.py index 46bf79b0b21cb6..c095c261926b8c 100755 --- a/system/logmessaged.py +++ b/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