cosmetic fix in journal logging (log basename only)

This commit is contained in:
2024-05-10 14:20:39 -05:00
parent a0f1895e6c
commit fa41d2e05e
5 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
#set -x
systemd-cat -t "$0" -p info <<< "Started"
systemd-cat -t "`basename $0`" -p info <<< "Started"
./getNewAccessToken.sh
@@ -32,4 +32,4 @@ if [[ -e temp/hadErrors.$$.tmp ]]; then
curl -d "" -X POST "https://deadswitch.kawomi.com/api/v1?topic=trade.schwab.error.recordAllSymbolsSingleRun&secs=1&email=joe@kawomi.com"
fi
systemd-cat -t "$0" -p info <<< "Finished"
systemd-cat -t "`basename $0`" -p info <<< "Finished"