From f8d2236e55e5c369b218017d1de1058d6a8ee361 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Fri, 1 Mar 2024 19:26:24 +0200 Subject: Log formatting adjustment --- bin/ak-ipfs-check | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'bin/ak-ipfs-check') diff --git a/bin/ak-ipfs-check b/bin/ak-ipfs-check index d54f5fc..30ebf4d 100755 --- a/bin/ak-ipfs-check +++ b/bin/ak-ipfs-check @@ -1,38 +1,38 @@ #!/bin/bash PROGRAM="$(basename $0)" logit(){ - ak-logthis "<$PROGRAM>" "$1" "$2" + ak-logthis "$PROGRAM" "$1" "$2" } ak-ipfs-files-ls /zarchive > /dev/null if [ $? != 0 ] then - logit "[ERROR]" "/zarchive is missing" -else - logit "[INFO]" "/zarchive OK" + logit "ERROR" "/zarchive is missing" +else + logit "INFO" "/zarchive OK" fi ak-ipfs-files-ls /zlatest > /dev/null if [ $? != 0 ] then - logit "[ERROR]" "/zlatest is missing" + logit "ERROR" "/zlatest is missing" else - logit "[INFO]" "/zlatest is OK" + logit "INFO" "/zlatest is OK" fi ak-ipfs-key-list | grep zchain > /dev/null if [ $? != 0 ]; then - logit "[WARNING]" "zchain key is missing" + logit "WARNING" "zchain key is missing" ak-ipfs-key-gen zchain > $ZCHAIN if [ $? != 0 ]; then - logit "[ERROR]" "zchain fails to create" + logit "ERROR" "zchain fails to create" else - logit "[INFO]" "zchain created" + logit "INFO" "zchain created" fi else - logit "[INFO]" "zchain is there" + logit "INFO" "zchain is there" fi ak-ipfs-key-list | grep ak-config > /dev/null @@ -40,10 +40,10 @@ if [ $? != 0 ]; then logit "WARNING" "ak-config key is missing" ak-ipfs-key-gen ak-config if [ $? != 0 ]; then - logit "[ERROR]" "ak-config fails to create" + logit "ERROR" "ak-config fails to create" else - logit "[INFO]" "ak-config created" + logit "INFO" "ak-config created" fi else - logit "[INFO]" "ak-config is there" + logit "INFO" "ak-config is there" fi -- cgit v1.2.3