Skip to content

Commit 4e3a6fd

Browse files
authored
feat: add promslog.NewNopLogger() convenience func (#697)
Simple convenience function to return an slog.Logger that writes to io.Discard. Originally suggested by @ArthurSens [here](#686 (comment)), and requested again by @bboreham [here](prometheus/prometheus#14906 (comment)). As Bryan points out in the comment, there's 147 instances where a discard logger is needed, so a consistent utility function to manage them seems helpful. Signed-off-by: TJ Hoplock <[email protected]>
1 parent d66e745 commit 4e3a6fd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

promslog/slog.go

+6
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,9 @@ func New(config *Config) *slog.Logger {
180180
}
181181
return slog.New(slog.NewTextHandler(config.Writer, logHandlerOpts))
182182
}
183+
184+
// NewNopLogger is a convenience function to return an slog.Logger that writes
185+
// to io.Discard.
186+
func NewNopLogger() *slog.Logger {
187+
return slog.New(slog.NewTextHandler(io.Discard, nil))
188+
}

0 commit comments

Comments
 (0)