From 760f6c2329f9c0247b265d1a69c02a2feebfafd5 Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Fri, 4 Sep 2020 09:48:30 +0200 Subject: Update VPP config warnings and change log level in proxy Change-Id: I8f965a0758c4b7459f27a46c095dad232e331032 Signed-off-by: Ondrej Fabry --- proxy/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proxy') 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() { -- cgit 1.2.3-korg