mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
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:
parent
edad14c6d0
commit
254d58d3a4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue