mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-19 15:06:25 +01:00
d5c180e680
It is better developing vmctl tool in VictoriaMetrics repository, so it could be released together with the rest of vmutils tools such as vmalert, vmagent, vmbackup, vmrestore and vmauth.
9 lines
206 B
Go
9 lines
206 B
Go
package log
|
|
|
|
type nopLogger struct{}
|
|
|
|
// NewNopLogger returns a logger that doesn't do anything.
|
|
func NewNopLogger() Logger { return nopLogger{} }
|
|
|
|
func (nopLogger) Log(...interface{}) error { return nil }
|