diff options
author | Ondrej Fabry <ofabry@cisco.com> | 2019-09-09 06:16:18 +0200 |
---|---|---|
committer | Ondrej Fabry <ofabry@cisco.com> | 2019-09-09 06:16:26 +0200 |
commit | d06548e4f4492c181f04a5fc9bf994764278e68b (patch) | |
tree | 2b47941fe527e727d9039d50859d6c9478401be0 /core/connection.go | |
parent | 56bf21b1a9ecd1096760a5eff70ad8366bf34253 (diff) |
Use new default binapi socket with fallback to legacy
Change-Id: I1a6839e3bbb8d599fcbdbc2b1aff7c81f7d263c9
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Diffstat (limited to 'core/connection.go')
-rw-r--r-- | core/connection.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/connection.go b/core/connection.go index 605e1ef..8b8c7b1 100644 --- a/core/connection.go +++ b/core/connection.go @@ -260,7 +260,7 @@ func (c *Connection) connectLoop(connChan chan ConnectionEvent) { // loop until connected for { if err := c.vppClient.WaitReady(); err != nil { - log.Warnf("wait ready failed: %v", err) + log.Debugf("wait ready failed: %v", err) } if err := c.connectVPP(); err == nil { // signal connected event |