diff --git a/CHANGELOG.md b/CHANGELOG.md index 470e7932b488bae8476e5cf35a11d026bed3a6ba..845d1691e63472e2119f35d9da49ab4b247790b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Previous release notes are hosted on [GitHub](https://github.com/smok-serwis/coolamqp/releases). Since v1.3.2 they'll be put here and in release description. +v2.0.1 +====== + +* removed extra logging from argumentify + v2.0.0 ====== diff --git a/coolamqp/__init__.py b/coolamqp/__init__.py index afced14728f75ce3cd253465517ccc1032a62309..0075adf5ba041fddb2358ff826f06f855b675d04 100644 --- a/coolamqp/__init__.py +++ b/coolamqp/__init__.py @@ -1 +1 @@ -__version__ = '2.0.0' +__version__ = '2.0.1a1' diff --git a/coolamqp/argumentify.py b/coolamqp/argumentify.py index 51aaed7708399cc688e486fa6fe124ee01b4c0f8..4709d573c89ae31d6d20e657205c91b69017f3e3 100644 --- a/coolamqp/argumentify.py +++ b/coolamqp/argumentify.py @@ -24,7 +24,6 @@ def toutf8(q): def argumentify(arguments): if arguments is None: return [] - logger.warning('Input is %s' % (arguments, )) # Was it argumented already? # if isinstance(arguments, list): # if len(arguments) >= 1: @@ -37,7 +36,6 @@ def argumentify(arguments): for key, value in arguments.items(): key = tobytes(key) args.append((key, (value, get_type_for(value)))) - logger.warning('Output is %s', (args, 'F')) return (args, 'F') elif len(arguments[0]) == 2: for key, value in arguments: diff --git a/docs/index.rst b/docs/index.rst index f6694137844a14e9001ee25f8ab83b39efe1303c..5c924b47274a1bc294c9284ceeddaa3c16479247 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,6 +14,14 @@ Welcome to CoolAMQP's documentation! reference frames +It is highly recommended to set logging level of CoolAMQP to error: + +.. code-block:: python + + import logging + logging.getLogger('coolamqp').setLevel(logging.ERROR) + + Quick FAQ =========