From 88217d5b41b3e84b2dc083ac9e18247095bed2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Fr=C3=A9con?= Date: Wed, 27 Mar 2024 19:46:07 +0100 Subject: [PATCH] Turn down info message level --- lib/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common.sh b/lib/common.sh index 9c8e7db..9fbab23 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -203,7 +203,7 @@ error() { _log ERR "$@" && exit 1; } sublog() { # Eagerly wait for the log file to exist while ! [ -f "${1-0}" ]; do sleep 0.1; done - verbose "$1 now present on disk" + debug "$1 now present on disk" # Then reroute its content through our logging printf style tail -n +0 -f "$1" 2>/dev/null | while IFS= read -r line; do