Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions fern/products/sdks/overview/go/changelog/2026-03-11.mdx
Original file line number Diff line number Diff line change
@@ -1,31 +1,3 @@
## 1.30.0
**`(feat):`** Add support for configurable logging to the generated SDK.
Users can configure logging by passing a `LogConfig` to the client builder's `.WithLogging()` method.

Example:
```go
import (
"sdk/core"
"sdk/option"
)

client := sdk.NewClient(
option.WithLogging(core.NewLogConfigBuilder().
Level(core.LogLevelDebug).
Silent(false).
Build()),
)
```

The logging configuration supports:
- `Level` — Set the minimum log level (DEBUG, INFO, WARN, ERROR)
- `Logger` — Provide a custom logger implementation (defaults to ConsoleLogger)
- `Silent` — Enable/disable logging (default: true/silent)

HTTP requests and responses are logged with headers (sensitive headers like
Authorization are redacted). Error responses (4xx/5xx) are logged at error level.


## 1.29.3
**`(chore):`** Add concurrency configuration to generated CI workflow with cancel-in-progress: false
to prevent stacked runs from being cancelled when a newer run starts.
Expand Down
Loading