From 5c90394f7ae0358a0607629d6ffd7afe8808e66a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jake=20Buchholz=20G=C3=B6kt=C3=BCrk?= Date: Sat, 30 Nov 2024 14:39:32 -0800 Subject: [PATCH] logging update --- lib/tiny-cloud/common | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tiny-cloud/common b/lib/tiny-cloud/common index d7689c0..a483ef3 100644 --- a/lib/tiny-cloud/common +++ b/lib/tiny-cloud/common @@ -73,10 +73,10 @@ if [ "$CLOUD" = "auto" ]; then ) fi if [ -z "$CLOUD" ] || [ ! -d "$LIBDIR/tiny-cloud/cloud/$CLOUD" ]; then - log -s -t autodetect err "unable to determine cloud" + log -t autodetect err "unable to determine cloud" CLOUD=unknown else - log -s -t autodetect notice "choosing '$CLOUD' cloud" + log -t autodetect notice "choosing '$CLOUD' cloud" printf "%s\n" "$CLOUD" > "$TINY_CLOUD_VAR"/.autodetect fi }