From 1275d750e2ecb774a07d5dd88641685a2b37c673 Mon Sep 17 00:00:00 2001 From: Masahiro Nakagawa Date: Mon, 29 May 2017 14:49:27 +0900 Subject: [PATCH] fluent-plugin-config-format: remove $log from markdown call path. fix #1584 --- lib/fluent/command/plugin_config_formatter.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/fluent/command/plugin_config_formatter.rb b/lib/fluent/command/plugin_config_formatter.rb index c1b66210aa..4bcbc350ae 100644 --- a/lib/fluent/command/plugin_config_formatter.rb +++ b/lib/fluent/command/plugin_config_formatter.rb @@ -167,7 +167,6 @@ def dump_section_markdown(base_section, level = 0) required = sub_section.delete(:required) multi = sub_section.delete(:multi) alias_name = sub_section.delete(:alias) - $log.trace(name: section_name, required: required, multi: multi, alias_name: alias_name) sub_section.delete(:section) dumped << ERB.new(template_path("section.md.erb").read, nil, "-").result(binding) end