diff --git a/ytypes/container.go b/ytypes/container.go index 73790f2ef..2d9d50c3f 100644 --- a/ytypes/container.go +++ b/ytypes/container.go @@ -19,7 +19,6 @@ import ( "reflect" "strings" - log "github.com/golang/glog" "github.com/kylelemons/godebug/pretty" "github.com/openconfig/goyang/pkg/yang" "github.com/openconfig/ygot/util" @@ -158,7 +157,6 @@ func unmarshalStruct(schema *yang.Entry, parent interface{}, jsonTree map[string // Skip annotation fields since they do not have a schema. // TODO(robjs): Implement unmarshalling annotations. if util.IsYgotAnnotation(ft) { - log.Infof("ignoring annotation field %s during unmarshalling, unsupported", ft.Name) // We need to find the paths that we should have unmarshalled here to avoid // throwing errors to users whilst there is a TODO above. paths, err := pathTagFromField(ft)