diff options
author | Serguei Bezverkhi <sbezverk@cisco.com> | 2020-05-07 04:36:25 -0400 |
---|---|---|
committer | Serguei Bezverkhi <sbezverk@cisco.com> | 2020-05-07 04:36:25 -0400 |
commit | 7bdaeb349bd9cbba320a0147010ea0b496c09a1b (patch) | |
tree | cb51d49ea68163e765ab73ad741a88157cdb5428 /pkg | |
parent | 1f01ec26939845d7c19d9284ef84e00b5747d1ad (diff) |
remove debug messages
Signed-off-by: Serguei Bezverkhi <sbezverk@cisco.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/packet/bgp/bgp.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/packet/bgp/bgp.go b/pkg/packet/bgp/bgp.go index d60f3d36..84604312 100644 --- a/pkg/packet/bgp/bgp.go +++ b/pkg/packet/bgp/bgp.go @@ -28,9 +28,6 @@ import ( "sort" "strconv" "strings" - - "github.com/golang/glog" - "github.com/sbezverk/gobmp/pkg/tools" ) type MarshallingOption struct { @@ -12378,7 +12375,6 @@ func GetPathAttribute(data []byte) (PathAttributeInterface, error) { case BGP_ATTR_TYPE_LS: return &PathAttributeLs{}, nil case BGP_ATTR_TYPE_PREFIX_SID: - glog.Infof("Prefix SID RAW: %s", tools.MessageHex(data)) return &PathAttributePrefixSID{}, nil } return &PathAttributeUnknown{}, nil |