A very basic pretty printer, pipe your json log output into it and it will make them more readable:
echo '{"label": "my-log", "level":"debug", "message": "hi"}' | ppOutputs:
[debug] my-log - hi
You'll need to send stderr into stdout:
your_log_command 2>&1 | pp