File tree 2 files changed +4
-6
lines changed 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
8
8
9
9
## [ Unreleased]
10
10
11
+ ### Changed
12
+
13
+ - Remove the notices from ` Logger ` to make the whole Logs API user-facing in ` go.opentelemetry.io/otel/log ` . (#6167 )
14
+
11
15
### Fixed
12
16
13
17
- Relax minimum Go version to 1.22.0 in various modules. (#6073 )
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ type Logger interface {
28
28
//
29
29
// Implementations of this method need to be safe for a user to call
30
30
// concurrently.
31
- //
32
- // Notice: Emit is intended to be used by log bridges.
33
- // Is should not be used for writing instrumentation.
34
31
Emit (ctx context.Context , record Record )
35
32
36
33
// Enabled returns whether the Logger emits for the given context and
@@ -53,9 +50,6 @@ type Logger interface {
53
50
//
54
51
// Implementations of this method need to be safe for a user to call
55
52
// concurrently.
56
- //
57
- // Notice: Enabled is intended to be used by log bridges.
58
- // Is should not be used for writing instrumentation.
59
53
Enabled (ctx context.Context , param EnabledParameters ) bool
60
54
}
61
55
You can’t perform that action at this time.
0 commit comments