diff --git a/pkg/pipeline/watch.go b/pkg/pipeline/watch.go index 93f587ee..49bdfed9 100644 --- a/pkg/pipeline/watch.go +++ b/pkg/pipeline/watch.go @@ -109,12 +109,6 @@ func (c *Controller) gstLog(level gst.DebugLevel, file, function string, line in msg = fmt.Sprintf("[gst %s] %s", lvl, message) } args := []interface{}{"caller", fmt.Sprintf("%s:%d", file, line)} - if obj != nil { - name, err := obj.GetProperty("name") - if err == nil { - args = append(args, "object", name.(string)) - } - } c.gstLogger.Debugw(msg, args...) }