diff options
author | Ondrej Fabry <ofabry@cisco.com> | 2020-09-04 09:48:30 +0200 |
---|---|---|
committer | Ondrej Fabry <ofabry@cisco.com> | 2020-09-04 10:49:17 +0000 |
commit | 760f6c2329f9c0247b265d1a69c02a2feebfafd5 (patch) | |
tree | 3ceeb6d898ef251fc2151379b24c3d32a5047aa6 /proxy | |
parent | 1a1f4043dfae2e77de70d6adfbb8d84cdeed658d (diff) |
Update VPP config warnings and change log level in proxy
Change-Id: I8f965a0758c4b7459f27a46c095dad232e331032
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Diffstat (limited to 'proxy')
-rw-r--r-- | proxy/server.go | 4 |
1 files changed, 2 insertions, 2 deletions
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() { |