We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a49a5f + b485d63 commit 7f3c3f0Copy full SHA for 7f3c3f0
CHANGES.md
@@ -19,6 +19,9 @@
19
20
* Fixed a problem where the underlying i/o stream of a persistent slice dataset
21
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.
25
26
## Version 0.2.0 (from 2024-18-01)
27
zappend/metadata.py
@@ -50,8 +50,8 @@ def __init__(
50
self.compressor = compressor
51
self.filters = filters
52
if unknown_settings:
53
- logger.warning(
54
- "Ignoring unknown encoding setting(s): %s",
+ logger.debug(
+ "Ignoring non-applicable encoding setting(s): %s",
55
", ".join(unknown_settings.keys()),
56
)
57
0 commit comments