Reduce log level for modules importer

We load a lot of Kibana files and the log lines are not actionable to the user.
Moving it to debug.

Fixes #7395
This commit is contained in:
Suyog Rao 2017-06-08 22:56:03 -07:00
parent edad14c6d0
commit 254d58d3a4

View file

@ -11,7 +11,7 @@ module LogStash module Modules class Importer
def put(resource, overwrite = true)
path = resource.import_path
logger.info("Attempting PUT", :url_path => path, :file_path => resource.content_path)
logger.debug("Attempting PUT", :url_path => path, :file_path => resource.content_path)
if !overwrite && content_exists?(path)
logger.debug("Found existing Elasticsearch resource.", :resource => path)
return