diff --git a/platforms.go b/platforms.go index 30cad84..afa2f9e 100644 --- a/platforms.go +++ b/platforms.go @@ -2,7 +2,6 @@ package netboxgo import ( "context" - "fmt" "net/http" "net/url" "time" @@ -81,10 +80,6 @@ func (s *PlatformsService) List(ctx context.Context, f *PlatformFilter) (*Platfo var req *http.Request var err error - if f == nil { - s.client.debugf("f is null!!!!!!!!!!!!!!\n") - } - encoder := schema.NewEncoder() form := url.Values{} @@ -94,7 +89,6 @@ func (s *PlatformsService) List(ctx context.Context, f *PlatformFilter) (*Platfo } query = form.Encode() - fmt.Printf("f: %+v\n, query: %s, platformsPath: %s\n", f, query, platformsPath) req, err = s.client.newRequest(ctx, "GET", platformsPath, query, nil) if err != nil { return &platforms, err