From d2a3ccbfbec02231c63f6e663e8c5bf10a865fb6 Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Mon, 1 Mar 2021 10:54:24 +0100 Subject: [PATCH] pastekodi: use short-precise journal format Having timestamps with microsecond precision instead of only seconds makes it easier to analyse timing issues and cross-reference entries with kodi log (which has millisecond timestamps). Signed-off-by: Matthias Reichl --- packages/mediacenter/kodi/scripts/pastekodi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mediacenter/kodi/scripts/pastekodi b/packages/mediacenter/kodi/scripts/pastekodi index 7b3910749f..f26700e097 100755 --- a/packages/mediacenter/kodi/scripts/pastekodi +++ b/packages/mediacenter/kodi/scripts/pastekodi @@ -82,7 +82,7 @@ fi cat_file "${LOG_FILE}" - journalctl -a | cat_data "journalctl -a" + journalctl -a -o short-precise | cat_data "journalctl -a" if [ "${LIBREELEC_PROJECT}" = "RPi" ]; then bootloader_version="$(vcgencmd bootloader_version)"