Correct "log_file" option in zaqar documents

This patch provide fix for below issue
As per zaqar README.rst, if you want to change log file name,
then you have to edit log_file option in [DEFAULT] section of ~/.zaqar/zaqar.conf
                   log_file = server.log

However, actually to change the log file name,
you have to args option in [handler_file] section in ~/.zaqar/logging.conf as below.
                    args=('zaqar.log', 'w')
Closes-bug: #1496682

Change-Id: I94d762fca1905b367722e44cb24961e3e4cfffb0
This commit is contained in:
MD NADEEM 2015-09-17 14:26:46 +09:00
parent a607d8ea0c
commit c890e77067
1 changed files with 3 additions and 3 deletions

View File

@ -51,10 +51,10 @@ sudo yum install gcc python-pip libxml2-devel libxslt-devel
uri = mongodb://127.0.0.1:27017
5. For logging, find the ``[DEFAULT]`` section in
``~/.zaqar/zaqar.conf`` and modify as desired::
5. For logging, find the ``[handler_file]`` section in
``~/.zaqar/logging.conf`` and modify as desired::
log_file = server.log
args=('zaqar.log', 'w')
6. Change directories back to your local copy of the repo::