Skip to content

Commit

Permalink
Change visibility of log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Scavo committed May 5, 2017
1 parent 0f55399 commit e96b906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/http_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit e96b906

Please sign in to comment.