Commit 1c31f1e7 authored by Miek Gieben's avatar Miek Gieben

remove debug

parent 47f4e165
......@@ -2,7 +2,6 @@ package kubernetes
import (
"fmt"
"log"
"sync"
"time"
......@@ -150,7 +149,6 @@ func (dns *dnsController) Stop() error {
// Run starts the controller.
func (dns *dnsController) Run() {
log.Printf("[debug] starting k8s controller: %s\n", dns)
go dns.endpController.Run(dns.stopCh)
go dns.svcController.Run(dns.stopCh)
go dns.nsController.Run(dns.stopCh)
......
......@@ -68,8 +68,6 @@ func (k *Kubernetes) InitKubeCache() error {
}
k.APIConn = newdnsController(kubeClient, k.ResyncPeriod, k.Selector)
log.Printf("[debug] k8s controller initialized: %s\n", k)
return err
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment