diff --git a/runner/run.go b/runner/run.go index f72a5160..41d8823e 100644 --- a/runner/run.go +++ b/runner/run.go @@ -20,10 +20,6 @@ func Run(call, host string, options ...Option) (*Report, error) { c, err := newConfig(call, host, options...) if err != nil { - if c.hasLog { - c.log.Errorf("Error creating run config: %+v", err.Error()) - } - return nil, err } @@ -35,10 +31,6 @@ func Run(call, host string, options ...Option) (*Report, error) { reqr, err := newRequester(c) if err != nil { - if c.hasLog { - c.log.Errorf("Error creating new requestor: %+v", err.Error()) - } - return nil, err }