Skip to content

Commit

Permalink
Merge branch 'master' into ks/#740-doc
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-maier committed Aug 30, 2017
2 parents fc452c7 + 2dcbd1f commit 17bc124
Show file tree
Hide file tree
Showing 7 changed files with 828 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ Enhancements
* Add test for wbemcli script that will execute the script and test
results. issue #569

* **Experimental:** Add logging to record information passing between the pywbem
client and WBEM servers both the WBEMConnection methods that drive information
interchange and the http requests and responses. In includes a new module
(_logging.py) that provides configuration of logging. See issue #691


Bug fixes
^^^^^^^^^
Expand Down
11 changes: 10 additions & 1 deletion docs/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ This chapter has the following sections:
* :ref:`CIM data types` - Python classes for representing values of CIM data
types.
* :ref:`CIM status codes` - CIM status codes returned by failing WBEM
operations.
operations.
* :ref:`Logging` - Logging of WBEM operations.
* :ref:`Exceptions` - Exceptions specific to pywbem that may be raised.
* :ref:`Statistics` - Statistics classes to gather information on wbem
operation performance.
Expand Down Expand Up @@ -291,6 +292,14 @@ Statistics
:members:
:special-members: __str__

.. _`Logging`:

Logging
-------

.. automodule:: pywbem._logging
:members:

.. _`Security considerations`:

Security considerations
Expand Down
1 change: 1 addition & 0 deletions pywbem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
from ._recorder import * # noqa: F403,F401
from .config import * # noqa: F403,F401
from ._statistics import * # noqa: F403,F401
from ._logging import * # noqa: F403,F401

from ._version import __version__ # noqa: F401

Expand Down
Loading

0 comments on commit 17bc124

Please sign in to comment.