6033N/A# Print debugging output (set logging level to DEBUG instead of 6033N/A# default WARNING level). (boolean value) 6033N/A# Print more verbose output (set logging level to INFO instead of 6033N/A# default WARNING level). (boolean value) 6033N/A# The name of a logging configuration file. This file is appended to 6033N/A# any existing logging configuration files. For details about logging 6033N/A# configuration files, see the Python logging module documentation. 6033N/A# is deprecated. Please use logging_context_format_string and 6033N/A# logging_default_format_string instead. (string value) 6033N/A# Format string for %%(asctime)s in log records. Default: %(default)s 6033N/A#log_date_format = %Y-%m-%d %H:%M:%S 6033N/A# (Optional) Name of log file to output to. If no default is set, 6033N/A# logging will go to stdout. (string value) 6033N/A# (Optional) The base directory used for relative --log-file paths. 6033N/A# Use syslog for logging. Existing syslog format is DEPRECATED during 6033N/A# I, and will change in J to honor RFC5424. (boolean value) 6033N/A# (Optional) Enables or disables syslog rfc5424 format for logging. If 6033N/A# enabled, prefixes the MSG part of the syslog message with APP-NAME 6033N/A# (RFC5424). The format without the APP-NAME is deprecated in I, and 6033N/A# will be removed in J. (boolean value) 6033N/A#use_syslog_rfc_format = false 6033N/A# Syslog facility to receive log lines. (string value) 6033N/A#syslog_log_facility = LOG_USER 6033N/A# Log output to standard error. (boolean value) 6033N/A# Format string to use for log messages with context. (string value) 6033N/A#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s 6033N/A# Format string to use for log messages without context. (string 6033N/A#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s 6033N/A# Data to append to log format when level is DEBUG. (string value) 6033N/A#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d 6033N/A# Prefix each line of exception output with this format. (string 6033N/A#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s 6033N/A# List of logger=LEVEL pairs. (list value) 6033N/A#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN 6033N/A# Enables or disables publication of error events. (boolean value) 6033N/A# Enables or disables fatal status of deprecations. (boolean value) 6033N/A# The format for an instance that is passed with the log message. 6033N/A#instance_format = "[instance: %(uuid)s] " 6033N/A# The format for an instance UUID that is passed with the log message. 6033N/A#instance_uuid_format = "[instance: %(uuid)s] " 6033N/A# The file name to use with SQLite. (string value) 6033N/A# If True, SQLite uses synchronous mode. (boolean value) 6033N/A# The back end to use for the database. (string value) 6033N/A# The SQLAlchemy connection string to use to connect to the database. 6033N/A# The SQLAlchemy connection string to use to connect to the slave 6033N/A# The SQL mode to be used for MySQL sessions. This option, including 6033N/A# the default, overrides any server-set SQL mode. To use whatever SQL 6033N/A# mode is set by the server configuration, set this to no value. 6033N/A# Example: mysql_sql_mode= (string value) 6033N/A#mysql_sql_mode = TRADITIONAL 6033N/A# Timeout before idle SQL connections are reaped. (integer value) 6033N/A# Minimum number of SQL connections to keep open in a pool. (integer 6033N/A# Maximum number of SQL connections to keep open in a pool. (integer 6033N/A# Maximum number of database connection retries during startup. Set to 6033N/A# -1 to specify an infinite retry count. (integer value) 6033N/A# Interval between retries of opening a SQL connection. (integer 6033N/A# If set, use this value for max_overflow with SQLAlchemy. (integer 6033N/A# Verbosity of SQL debugging information: 0=None, 100=Everything. 6033N/A# Add Python stack traces to SQL as comment strings. (boolean value) 6033N/A# If set, use this value for pool_timeout with SQLAlchemy. (integer 6033N/A# Enable the experimental use of database reconnect on connection 6033N/A# Seconds between retries of a database transaction. (integer value) 6033N/A# If True, increases the interval between retries of a database 6033N/A# operation up to db_max_retry_interval. (boolean value) 6033N/A#db_inc_retry_interval = true 6033N/A# If db_inc_retry_interval is set, the maximum seconds between retries 6033N/A# of a database operation. (integer value) 6033N/A# Maximum retries in case of connection error or deadlock error before 6033N/A# error is raised. Set to -1 to specify an infinite retry count. 6033N/A# Enable the experimental use of thread pooling for all DB API calls