mirror of
https://github.com/ribbybibby/ssl_exporter.git
synced 2024-11-27 08:31:02 +02:00
83f01274fc
* Move to yaml.v3 everywhere * Switch to github.com/prometheus/common/promlog for logging
12 lines
154 B
Go
12 lines
154 B
Go
package prober
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/go-kit/log"
|
|
)
|
|
|
|
func newTestLogger() log.Logger {
|
|
return log.NewLogfmtLogger(log.NewSyncWriter(os.Stdout))
|
|
}
|