1
0
mirror of https://github.com/ribbybibby/ssl_exporter.git synced 2025-02-22 20:24:32 +02:00

12 lines
154 B
Go
Raw Normal View History

package prober
import (
"os"
"github.com/go-kit/log"
)
func newTestLogger() log.Logger {
return log.NewLogfmtLogger(log.NewSyncWriter(os.Stdout))
}