From 551e85c720132c71aadd2cd9f48f68eab6abd0d8 Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 3 Oct 2020 16:30:30 +0200 Subject: [PATCH] show pretty json after 'info' call --- src/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console.cpp b/src/console.cpp index 55a259410..c6fef6a84 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -398,7 +398,7 @@ void EMSESPShell::add_console_commands() { } if (ok && output.size()) { - serializeJson(doc, shell); + serializeJsonPretty(doc, shell); shell.println(); } },