Skip to content

Commit 7f3c3f0

Browse files
authored
Merge branch 'main' into forman-31-ds_closed_too_early
2 parents 7a49a5f + b485d63 commit 7f3c3f0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919

2020
* Fixed a problem where the underlying i/o stream of a persistent slice dataset
2121
was closed immediately after opening the dataset. [#31]
22+
23+
* Now logging ignored encodings on level DEBUG instead of WARNING because they
24+
occur very likely when processing NetCDF files.
2225

2326
## Version 0.2.0 (from 2024-18-01)
2427

zappend/metadata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def __init__(
5050
self.compressor = compressor
5151
self.filters = filters
5252
if unknown_settings:
53-
logger.warning(
54-
"Ignoring unknown encoding setting(s): %s",
53+
logger.debug(
54+
"Ignoring non-applicable encoding setting(s): %s",
5555
", ".join(unknown_settings.keys()),
5656
)
5757

0 commit comments

Comments
 (0)