Merge "Default use_stderr to False"

This commit is contained in:
Jenkins
2016-08-26 07:31:02 +00:00
committed by Gerrit Code Review
2 changed files with 6 additions and 1 deletions

View File

@@ -98,7 +98,7 @@ logging_cli_opts = [
generic_log_opts = [
cfg.BoolOpt('use_stderr',
default=True,
default=False,
help='Log output to standard error. '
+ _IGNORE_MESSAGE),
]

View File

@@ -0,0 +1,5 @@
---
upgrade:
- Configuration option `use_stderr`'s default value is
False now, this will avoid same logs on service log and
specific log file by option --log-file.