From e96b906826764cf8c691f18bed6b8ac12fe1c569 Mon Sep 17 00:00:00 2001 From: Tom Scavo Date: Fri, 5 May 2017 11:38:20 -0400 Subject: [PATCH] Change visibility of log messages --- lib/http_tools.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/http_tools.sh b/lib/http_tools.sh index a343167..e935a10 100755 --- a/lib/http_tools.sh +++ b/lib/http_tools.sh @@ -235,7 +235,7 @@ conditional_get () { # quiet failure mode if $cache_only_mode; then - print_log_message -E "$FUNCNAME: resource not cached: $location" + print_log_message -W "$FUNCNAME: resource not cached: $location" return 1 fi @@ -387,7 +387,7 @@ conditional_get () { elif [ "$response_code" = "304" ]; then # quiet failure mode if $force_output_mode; then - print_log_message -E "$FUNCNAME: resource not modified: $location" + print_log_message -W "$FUNCNAME: resource not modified: $location" return 1 fi