Skip to content

Commit

Permalink
log: Make whole Logs API user-facing (#6167)
Browse files Browse the repository at this point in the history
Reason:
open-telemetry/opentelemetry-specification#4352

Prior-art: #6018
Support for `EventName` field will be added in separate PRs.
  • Loading branch information
pellared authored Jan 17, 2025
1 parent cbc3b6a commit e18299f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

### Changed

- Remove the notices from `Logger` to make the whole Logs API user-facing in `go.opentelemetry.io/otel/log`. (#6167)

### Fixed

- Relax minimum Go version to 1.22.0 in various modules. (#6073)
Expand Down
6 changes: 0 additions & 6 deletions log/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ type Logger interface {
//
// Implementations of this method need to be safe for a user to call
// concurrently.
//
// Notice: Emit is intended to be used by log bridges.
// Is should not be used for writing instrumentation.
Emit(ctx context.Context, record Record)

// Enabled returns whether the Logger emits for the given context and
Expand All @@ -53,9 +50,6 @@ type Logger interface {
//
// Implementations of this method need to be safe for a user to call
// concurrently.
//
// Notice: Enabled is intended to be used by log bridges.
// Is should not be used for writing instrumentation.
Enabled(ctx context.Context, param EnabledParameters) bool
}

Expand Down

0 comments on commit e18299f

Please sign in to comment.