From 02dbc8b31b08f5800582b2a5ec7348d56090c1f8 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Sat, 20 Dec 2025 09:33:50 +0100 Subject: [PATCH] Add just command to render unicode logs. --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index ab91439..d1d76b7 100644 --- a/justfile +++ b/justfile @@ -34,3 +34,7 @@ run: nix: nix develop .# + +# View the log with unicode characters rendered +logs: + perl -pe 's/\\u([0-9A-Fa-f]{4})/chr(hex($1))/ge' liblogos-blockchain-module.log | less -R