From 97584992219d64b56e7b985b7c6ceb0d24d13c16 Mon Sep 17 00:00:00 2001 From: Julian Date: Tue, 25 Mar 2025 09:55:44 +0100 Subject: [PATCH] chore: add show-logs justfile cmd --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index fcfb93e0..d43e2f52 100644 --- a/justfile +++ b/justfile @@ -105,3 +105,8 @@ reset-git: merge-main: git fetch origin main:main git merge main + + +# Make sure to set your PGT_LOG_PATH in your shell profile. +show-logs: + tail -f $(ls $PGT_LOG_PATH/server.log.* | sort -t- -k2,2 -k3,3 -k4,4 | tail -n 1) \ No newline at end of file