cebb77d7e2
The log_level in Swift is fixed to INFO. The patch make it changeable according to the value of "openstack_logging_debug". When "openstack_logging_debug" is "False", the log_level is set to "INFO". It is default value. Otherwise, the log_level is set to "DEBUG". Closes-Bug: #1777982 Change-Id: I62f430abd8f332cc2ece56a6733776fa03b10f77 Signed-off-by: tone.zhang <tone.zhang@arm.com>
32 lines
859 B
Django/Jinja
32 lines
859 B
Django/Jinja
[DEFAULT]
|
|
bind_ip = {{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}
|
|
bind_port = {{ swift_container_server_port }}
|
|
devices = {{ swift_devices_mount_point }}
|
|
mount_check = false
|
|
log_udp_host = {{ syslog_server }}
|
|
log_udp_port = {{ syslog_udp_port }}
|
|
log_name = {{ service_name }}
|
|
log_facility = {{ syslog_swift_facility }}
|
|
log_level = {{ swift_log_level }}
|
|
workers = {{ openstack_service_workers }}
|
|
|
|
[pipeline:main]
|
|
pipeline = container-server
|
|
|
|
[app:container-server]
|
|
use = egg:swift#container
|
|
allow_versions = True
|
|
|
|
{% if service_name == 'swift-container-auditor' %}
|
|
[container-auditor]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-container-replicator' %}
|
|
[container-replicator]
|
|
rsync_module = {replication_ip}:{meta}:container
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-container-updater' %}
|
|
[container-updater]
|
|
{% endif %}
|