diff --git a/HISTORY.rst b/HISTORY.rst index 37ef883..725e929 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ======= +v0.19.1 (2023-09-07) + +* Set logging level in ds_utils. + + v0.19.0 (2023-09-07) * Only import domino within domino specific functions so it doesn't need to be installed when using ds_utils. diff --git a/aioradio/ds_utils.py b/aioradio/ds_utils.py index e69eab1..4a86280 100644 --- a/aioradio/ds_utils.py +++ b/aioradio/ds_utils.py @@ -28,6 +28,7 @@ MAX_SSL_CONTENT_LENGTH = (2 ** 31) - 1 logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) logger.propagate = False c_handler = logging.StreamHandler() c_handler.setLevel(logging.INFO) diff --git a/setup.py b/setup.py index 4c373d7..20cefd9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.19.0', + version='0.19.1', description='Generic asynchronous i/o python utilities for AWS services (SQS, S3, DynamoDB, Secrets Manager), Redis, MSSQL (pyodbc), JIRA and more', long_description=long_description, long_description_content_type="text/markdown",