diff options
-rw-r--r-- | adapter/socketclient/socketclient.go | 2 | ||||
-rw-r--r-- | adapter/statsclient/statsclient.go | 2 | ||||
-rw-r--r-- | proxy/server.go | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/adapter/socketclient/socketclient.go b/adapter/socketclient/socketclient.go index 637bd69..4ee319b 100644 --- a/adapter/socketclient/socketclient.go +++ b/adapter/socketclient/socketclient.go @@ -83,7 +83,7 @@ const socketMissing = ` To enable it add following section to your VPP config: socksvr { - default + socket-name /run/vpp/api.sock } ------------------------------------------------------------ ` diff --git a/adapter/statsclient/statsclient.go b/adapter/statsclient/statsclient.go index f3be4e0..9c1c334 100644 --- a/adapter/statsclient/statsclient.go +++ b/adapter/statsclient/statsclient.go @@ -43,7 +43,7 @@ const socketMissing = ` To enable it add following section to your VPP config: statseg { - default + socket-name /run/vpp/stats.sock } ------------------------------------------------------------ ` diff --git a/proxy/server.go b/proxy/server.go index c2c4fe3..50a0077 100644 --- a/proxy/server.go +++ b/proxy/server.go @@ -84,7 +84,7 @@ func NewStatsRPC(stats adapter.StatsAPI) (*StatsRPC, error) { func (s *StatsRPC) watchConnection() { heartbeatTicker := time.NewTicker(10 * time.Second).C atomic.StoreUint32(&s.available, 1) - log.Println("enabling statsRPC service") + log.Debugln("enabling statsRPC service") count := 0 prev := new(api.SystemStats) @@ -263,7 +263,7 @@ func (s *BinapiRPC) watchConnection() { case core.Connected: if !s.serviceAvailable() { atomic.StoreUint32(&s.available, 1) - log.Println("enabling binapiRPC service") + log.Debugln("enabling binapiRPC service") } case core.Disconnected: if s.serviceAvailable() { |