Skip to content

Commit f9ba81c

Browse files
authored
Merge pull request #34 from NYPL/de-101-3/add-debug
DE-101: Replacing log with debug statement
2 parents 5bd57aa + 6ba932f commit f9ba81c

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## v1.3.1 7/31/24
3+
- Replaced log statement in Avro client with debug
4+
25
## v1.3.0 7/30/24
36
- Added SecretsManager client
47

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ kinesis_client = KinesisClient(...)
3636
# Do not use any version below 1.0.0
3737
# All available optional dependencies can be found in pyproject.toml.
3838
# See the "Managing dependencies" section below for more details.
39-
nypl-py-utils[kinesis-client,config-helper]==1.3.0
39+
nypl-py-utils[kinesis-client,config-helper]==1.3.1
4040
```
4141

4242
## Developing locally

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "nypl_py_utils"
7-
version = "1.3.0"
7+
version = "1.3.1"
88
authors = [
99
{ name="Aaron Friedman", email="aaronfriedman@nypl.org" },
1010
]

src/nypl_py_utils/classes/avro_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def get_json_schema(self, platform_schema_url):
3131
Fetches a JSON response from the input Platform API endpoint and
3232
interprets it as an Avro schema.
3333
"""
34-
self.logger.info(
34+
self.logger.debug(
3535
"Fetching Avro schema from {}".format(platform_schema_url))
3636
try:
3737

0 commit comments

Comments
 (0)