- bumps ChefDK release to 0.15.15 in bootstrap Change-Id: I6ce4587caa3ae68ddbd3ef1a521aaf46f4840b2c
39 lines
648 B
Plaintext
39 lines
648 B
Plaintext
[loggers]
|
|
keys=<%= (@loggers.keys).join(',') %>
|
|
|
|
[formatters]
|
|
keys=<%= @formatters.keys.join(',') %>
|
|
|
|
[handlers]
|
|
keys=<%= @handlers.keys.join(',') %>
|
|
|
|
## LOGGERS ##
|
|
|
|
<% @loggers.each do |section, options| %>
|
|
[logger_<%= section %>]
|
|
<% options.each do |key, value| %>
|
|
<%= key %>=<%= value %>
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
## FORMATTERS ##
|
|
|
|
<% @formatters.each do |section, options| %>
|
|
[formatter_<%= section %>]
|
|
<% options.each do |key, value| %>
|
|
<%= key %>=<%= value %>
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
## HANDLERS ##
|
|
|
|
<% @handlers.each do |section, options| %>
|
|
[handler_<%= section %>]
|
|
<% options.each do |key, value| %>
|
|
<%= key %>=<%= value %>
|
|
<% end %>
|
|
|
|
<% end %>
|