Skip to content

Commit da406e3

Browse files
authored
Chore: Fix deprecation docs and links (#1193)
Some of the doc comments on deprecated APIs weren't formatted correctly and wasn't showing up as deprecated on pkg.go.dev. This fixes those incorrectly formatted docs. Also added links to point to the new APIs that deprecated them.
1 parent 9b86a50 commit da406e3

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

options.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ func IncreaseLevel(lvl zapcore.LevelEnabler) Option {
133133
}
134134

135135
// OnFatal sets the action to take on fatal logs.
136-
// Deprecated: Use WithFatalHook instead.
136+
//
137+
// Deprecated: Use [WithFatalHook] instead.
137138
func OnFatal(action zapcore.CheckWriteAction) Option {
138139
return WithFatalHook(action)
139140
}

sugar_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ func TestSugarStructuredLogging(t *testing.T) {
220220
extra = []interface{}{err, "baz", false}
221221
expectedFields = []Field{String("foo", "bar"), Error(err), Bool("baz", false)}
222222
)
223-
223+
224224
for _, tt := range tests {
225225
withSugar(t, DebugLevel, nil, func(logger *SugaredLogger, logs *observer.ObservedLogs) {
226226
logger.With(context...).Debugw(tt.msg, extra...)

zapcore/entry.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,8 @@ func (ce *CheckedEntry) AddCore(ent Entry, core Core) *CheckedEntry {
281281
// Should sets this CheckedEntry's CheckWriteAction, which controls whether a
282282
// Core will panic or fatal after writing this log entry. Like AddCore, it's
283283
// safe to call on nil CheckedEntry references.
284-
// Deprecated: Use After(ent Entry, after CheckWriteHook) instead.
284+
//
285+
// Deprecated: Use [CheckedEntry.After] instead.
285286
func (ce *CheckedEntry) Should(ent Entry, should CheckWriteAction) *CheckedEntry {
286287
return ce.After(ent, should)
287288
}

zapgrpc/zapgrpc.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ func (f optionFunc) apply(log *Logger) {
6161
// WithDebug configures a Logger to print at zap's DebugLevel instead of
6262
// InfoLevel.
6363
// It only affects the Printf, Println and Print methods, which are only used in the gRPC v1 grpclog.Logger API.
64+
//
6465
// Deprecated: use grpclog.SetLoggerV2() for v2 API.
6566
func WithDebug() Option {
6667
return optionFunc(func(logger *Logger) {
@@ -146,19 +147,22 @@ type Logger struct {
146147
}
147148

148149
// Print implements grpclog.Logger.
149-
// Deprecated: use Info().
150+
//
151+
// Deprecated: use [Logger.Info].
150152
func (l *Logger) Print(args ...interface{}) {
151153
l.print.Print(args...)
152154
}
153155

154156
// Printf implements grpclog.Logger.
155-
// Deprecated: use Infof().
157+
//
158+
// Deprecated: use [Logger.Infof].
156159
func (l *Logger) Printf(format string, args ...interface{}) {
157160
l.print.Printf(format, args...)
158161
}
159162

160163
// Println implements grpclog.Logger.
161-
// Deprecated: use Info().
164+
//
165+
// Deprecated: use [Logger.Info].
162166
func (l *Logger) Println(args ...interface{}) {
163167
l.print.Println(args...)
164168
}

0 commit comments

Comments
 (0)