From f2e907acdd3fba78c01040330d7416b144a1d84f Mon Sep 17 00:00:00 2001 From: Matan Lurey Date: Thu, 24 Oct 2024 15:05:52 -0700 Subject: [PATCH] =?UTF-8?q?Use=20discenrable=20characters=20(replace=20`'?= =?UTF-8?q?=20=F0=9F=99=99=20=F0=9F=99=9B=20'`=20in=20error=20logs)=20(#15?= =?UTF-8?q?7548)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes an annoyance of mine where I stare at two boxes in the logs and have to guess if they are part of the real output: Screenshot 2024-10-24 at 12 47 58รขย€ยฏPM Related to https://github.com/flutter/flutter/issues/157542#issuecomment-2436083676. --- dev/bots/utils.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/bots/utils.dart b/dev/bots/utils.dart index 90050841b9..be8ab9b028 100644 --- a/dev/bots/utils.dart +++ b/dev/bots/utils.dart @@ -177,16 +177,16 @@ Never reportErrorsAndExit(String message) { _hideTimer = null; print('$clock $message$reset'); print(redLine); - print('${red}For your convenience, the error messages reported above are repeated here:$reset'); + print('${red}The error messages reported above are repeated here:$reset'); final bool printSeparators = _errorMessages.any((List messages) => messages.length > 1); if (printSeparators) { - print(' ๐Ÿ™™ ๐Ÿ™› '); + print(' -- This line intentionally left blank -- '); } for (int index = 0; index < _errorMessages.length * 2 - 1; index += 1) { if (index.isEven) { _errorMessages[index ~/ 2].forEach(print); } else if (printSeparators) { - print(' ๐Ÿ™™ ๐Ÿ™› '); + print(' -- This line intentionally left blank -- '); } } print(redLine);