·
19 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
Type: Patch release — bug fix, no breaking changes. Safe to upgrade from v3.0.0 with no code changes required.
Fixed
- SDK is now quiet by default at runtime (#18). Previously, every REST API call logged an
INFO-level line for its start and success (plus client init/close events), which printed to stdout by default — indistinguishable fromprint()output and noisy for normal usage.- The default log level (
NEO_LOG_LEVEL) changed fromINFOtoWARNING. Only warnings and errors are visible out of the box now. rest_client_initialized,api_request_start,api_request_success, andrest_client_closingare now logged atDEBUGinstead ofINFO, reflecting that they're routine tracing, not actionable events.- Want the old verbosity back? Set
NEO_LOG_LEVEL=INFOorNEO_LOG_LEVEL=DEBUG.
- The default log level (
Documentation
- Migration Guide references now read "v2.0.2 → v3.0.X" (covers the whole v3 line rather than pinning to
v3.0.0specifically). - Updated
docs/guides/MIGRATION.md's logging section to describe the new quiet-by-default behavior.
Notes
- No API surface changes — this is purely a logging-verbosity and documentation fix.