diff --git a/go_coverter/go_coverter.go b/go_coverter/go_coverter.go index 6d03800..cef8325 100644 --- a/go_coverter/go_coverter.go +++ b/go_coverter/go_coverter.go @@ -3,7 +3,8 @@ package go_coverter import ( "context" "encoding/json" - "fmt" + + "github.com/sirupsen/logrus" "github.com/drone/drone-go/plugin/config" @@ -31,10 +32,10 @@ type plugin struct{} func (p *plugin) Find(ctx context.Context, req *config.Request) (*drone.Config, error) { resp, err := json.Marshal(req) if err != nil { - fmt.Printf("%+v", err) + logrus.Error(err) return nil, err } - fmt.Printf("%s", string(resp)) + logrus.Infof("%s", string(resp)) return &drone.Config{ Data: defaultPipeline, }, nil