Skip to content

Commit

Permalink
Fix python3 iteration.
Browse files Browse the repository at this point in the history
  • Loading branch information
at0dd authored and fhussonnois committed Jan 5, 2021
1 parent 2f627fb commit 747c546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/docker/connect-log4j.properties.template
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ log4j.appender.connectAppender.layout.ConversionPattern=%d{ISO8601} %p [%t] %m (
# default log levels
{% set loggers = default_loggers %}
{% endif %}
{% for logger,loglevel in loggers.iteritems() %}
{% for logger,loglevel in loggers.items() %}
log4j.logger.{{logger}}={{loglevel}}
{% endfor %}

0 comments on commit 747c546

Please sign in to comment.