From 977e8fab1370b32d3d6fa855b956f53236635fe4 Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Sun, 16 Aug 2020 15:22:17 +0200 Subject: [PATCH] Remove spew.dump --- system/service/sink.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/system/service/sink.go b/system/service/sink.go index 0c0971c94..b91ad76f4 100644 --- a/system/service/sink.go +++ b/system/service/sink.go @@ -5,7 +5,6 @@ import ( "encoding/base64" "encoding/json" "fmt" - "github.com/davecgh/go-spew/spew" "io" "net/http" "net/url" @@ -254,7 +253,6 @@ func (svc sink) handleRequest(r *http.Request) (*SinkRequestUrlParams, error) { if srup.Path != "" { if srup.Path != svc.pathCleanup(reqPath) { - spew.Dump(srup.Path, reqPath, svc.pathCleanup(reqPath)) return nil, SinkErrInvalidPath(sap) } }