mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
ref: remove unused deduper log wrapper methods
I used these wrapper methods during initial development of the custom handler that the deduper now implements. Since the deduper implements slog.Handler and can be used directly as a logger, these wrapper methods are no longer needed. Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>
This commit is contained in:
parent
b602393473
commit
4f9e4dc016
|
@ -104,30 +104,6 @@ func (d *Deduper) WithGroup(name string) slog.Handler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Info logs the provided message and key-value arguments using the Deduper's
|
|
||||||
// internal slog.Logger. It is simply a wrapper around slog.Logger.Info().
|
|
||||||
func (d *Deduper) Info(msg string, args ...any) {
|
|
||||||
d.next.Info(msg, args...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Warn logs the provided message and key-value arguments using the Deduper's
|
|
||||||
// internal slog.Logger. It is simply a wrapper around slog.Logger.Warn().
|
|
||||||
func (d *Deduper) Warn(msg string, args ...any) {
|
|
||||||
d.next.Warn(msg, args...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Error logs the provided message and key-value arguments using the Deduper's
|
|
||||||
// internal slog.Logger. It is simply a wrapper around slog.Logger.Error().
|
|
||||||
func (d *Deduper) Error(msg string, args ...any) {
|
|
||||||
d.next.Error(msg, args...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Debug logs the provided message and key-value arguments using the Deduper's
|
|
||||||
// internal slog.Logger. It is simply a wrapper around slog.Logger.Debug().
|
|
||||||
func (d *Deduper) Debug(msg string, args ...any) {
|
|
||||||
d.next.Debug(msg, args...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Stop the Deduper.
|
// Stop the Deduper.
|
||||||
func (d *Deduper) Stop() {
|
func (d *Deduper) Stop() {
|
||||||
close(d.quit)
|
close(d.quit)
|
||||||
|
|
Loading…
Reference in a new issue