Skip to content

Commit

Permalink
Merge pull request #109 from nrccua/DS-438-set-logging-level-in-ds_utils
Browse files Browse the repository at this point in the history
Set logging level in ds_utils
  • Loading branch information
nrccua-timr authored Sep 7, 2023
2 parents f85e821 + ee4cfc4 commit 3be197e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions aioradio/ds_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 3be197e

Please sign in to comment.