Merge branch 'master' into async

This commit is contained in:
Galorhallen 2022-01-05 21:30:47 +01:00
commit 479456edc4
2 changed files with 2 additions and 3 deletions

View File

@ -58,7 +58,7 @@ func NewClient(config *config.Config) *Client {
os.Exit(1)
}
fmt.Printf("Creating client with config %s\n", config)
log.Printf("Creating client with config %s\n", config)
return &Client{
config: config,

View File

@ -1,7 +1,6 @@
package main
import (
"fmt"
"log"
"github.com/eko/pihole-exporter/config"
@ -41,7 +40,7 @@ func main() {
case <-serverDead:
}
fmt.Println("pihole-exporter HTTP server stopped")
log.Println("pihole-exporter HTTP server stopped")
}
func buildClients(clientConfigs []config.Config) []*pihole.Client {