Skip to content

Commit

Permalink
Reduce to 'warn' the log message regarding disabling SSL
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Jun 16, 2016
1 parent 6ebab12 commit 15538ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/InstURL.rb
Expand Up @@ -124,7 +124,7 @@ def add_extra_dir_to_url(url, extra_dir)
def add_ssl_verify_no_to_url(url)
parts = URL.Parse(url)
return url if parts["scheme"].downcase != "https"
log.error "Disabling certificate check for the installation repository"
log.warn "Disabling certificate check for the installation repository"
parts["query"] << "&" unless parts["query"].empty?
parts["query"] << "ssl_verify=no"
URL.Build(parts)
Expand Down

0 comments on commit 15538ca

Please sign in to comment.