From c4c63df6d88569a3a82fea3ccbd67d25e361ea47 Mon Sep 17 00:00:00 2001 From: Samuel de Medeiros Queiroz Date: Wed, 28 Jun 2017 14:44:51 -0400 Subject: [PATCH] Update info about logging in admin guide The option log_config_append should be used, not log_config. In addition, add a link to the Python logging module. Change-Id: Ie8ac0b0aafb4194032055de4455e8ebdb0bd8be1 --- doc/source/admin/identity-keystone-usage-and-features.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/source/admin/identity-keystone-usage-and-features.rst b/doc/source/admin/identity-keystone-usage-and-features.rst index 2c67ab72c8..6d6988312e 100644 --- a/doc/source/admin/identity-keystone-usage-and-features.rst +++ b/doc/source/admin/identity-keystone-usage-and-features.rst @@ -38,15 +38,16 @@ Logging You configure logging externally to the rest of Identity. The name of the file specifying the logging configuration is set using the -``log_config`` option in the ``[DEFAULT]`` section of the +``log_config_append`` option in the ``[DEFAULT]`` section of the ``/etc/keystone/keystone.conf`` file. To route logging through syslog, set ``use_syslog=true`` in the ``[DEFAULT]`` section. A sample logging configuration file is available with the project in ``etc/logging.conf.sample``. Like other OpenStack projects, Identity -uses the Python logging module, which provides extensive configuration +uses the `Python logging module`_, which provides extensive configuration options that let you define the output levels and formats. +.. _`Python logging module`: https://docs.python.org/library/logging.html User CRUD ---------