diff options
author | Serguei Bezverkhi <sbezverk@cisco.com> | 2020-05-05 16:10:24 -0400 |
---|---|---|
committer | Serguei Bezverkhi <sbezverk@cisco.com> | 2020-05-05 16:10:24 -0400 |
commit | e3001f9fe1568f7c39a0c5963630fe38866ec8e1 (patch) | |
tree | 1640a66d5decc3620d9fa7e42a0de56e947e8a34 /pkg/packet/bgp/bgp.go | |
parent | 8409507a7c4888714df987e368de6bffc2fdf8ba (diff) |
additional changes
Signed-off-by: Serguei Bezverkhi <sbezverk@cisco.com>
Diffstat (limited to 'pkg/packet/bgp/bgp.go')
-rw-r--r-- | pkg/packet/bgp/bgp.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/packet/bgp/bgp.go b/pkg/packet/bgp/bgp.go index 20d210ab..b35981c4 100644 --- a/pkg/packet/bgp/bgp.go +++ b/pkg/packet/bgp/bgp.go @@ -28,8 +28,6 @@ import ( "sort" "strconv" "strings" - - "github.com/golang/glog" ) type MarshallingOption struct { @@ -12377,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("><SB> BGP Prefix SI attribute detected: %+v", data) return &PathAttributePrefixSID{}, nil } return &PathAttributeUnknown{}, nil |