diff options
Diffstat (limited to 'server/fsm.go')
-rw-r--r-- | server/fsm.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/fsm.go b/server/fsm.go index 21c05399..8d43c6c8 100644 --- a/server/fsm.go +++ b/server/fsm.go @@ -16,6 +16,7 @@ package server import ( + "encoding/json" log "github.com/Sirupsen/logrus" "github.com/osrg/gobgp/config" "github.com/osrg/gobgp/packet" @@ -319,6 +320,8 @@ func (h *FSMHandler) sendMessageloop() error { h.errorCh <- true return nil } + j, _ := json.Marshal(m) + log.Debugf("sent %v: %s", fsm.peerConfig.NeighborAddress, string(j)) fsm.bgpMessageStateUpdate(m.Header.Type, false) case <-fsm.keepaliveTicker.C: m := bgp.NewBGPKeepAliveMessage() |