summaryrefslogtreecommitdiffstats
path: root/keystone/config.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-02-16 10:58:52 +0000
committerGerrit Code Review <review@openstack.org>2013-02-16 10:58:52 +0000
commitae412dd73446f474c31c86e96ce56d372edbf78c (patch)
tree021c9bf256d976d586cf136674d9828a2c9255f9 /keystone/config.py
parent3a25cd6a6a095f6e13b3fe3d685a63ba2ad45c34 (diff)
parent83e989fa35907cbe26feada6f0f4a841df4de9f5 (diff)
downloadkeystone-ae412dd73446f474c31c86e96ce56d372edbf78c.tar.gz
keystone-ae412dd73446f474c31c86e96ce56d372edbf78c.tar.xz
keystone-ae412dd73446f474c31c86e96ce56d372edbf78c.zip
Merge "Cleaned up keystone-all --help output"
Diffstat (limited to 'keystone/config.py')
-rw-r--r--keystone/config.py16
1 files changed, 7 insertions, 9 deletions
diff --git a/keystone/config.py b/keystone/config.py
index 53fd1756..b604db43 100644
--- a/keystone/config.py
+++ b/keystone/config.py
@@ -51,27 +51,25 @@ logging_cli_opts = [
cfg.StrOpt('log-format',
default=_DEFAULT_LOG_FORMAT,
metavar='FORMAT',
- help='A logging.Formatter log message format string which may'
- 'use any of the available logging.LogRecord attributes. '
- 'Default: %(default)s'),
+ help='A logging.Formatter log message format string which may '
+ 'use any of the available logging.LogRecord attributes.'),
cfg.StrOpt('log-date-format',
default=_DEFAULT_LOG_DATE_FORMAT,
metavar='DATE_FORMAT',
- help='Format string for %%(asctime)s in log records. '
- 'Default: %(default)s'),
+ help='Format string for %%(asctime)s in log records.'),
cfg.StrOpt('log-file',
metavar='PATH',
- help='(Optional) Name of log file to output to. '
+ help='Name of log file to output. '
'If not set, logging will go to stdout.'),
cfg.StrOpt('log-dir',
- help='(Optional) The directory to keep log files in '
- '(will be prepended to --logfile)'),
+ help='The directory in which to store log files. '
+ '(will be prepended to --log-file)'),
cfg.BoolOpt('use-syslog',
default=False,
help='Use syslog for logging.'),
cfg.StrOpt('syslog-log-facility',
default='LOG_USER',
- help='syslog facility to receive log lines')
+ help='syslog facility to receive log lines.')
]
CONF = cfg.CONF