Skip to content

Commit

Permalink
Merge pull request #24 from kmarkela/debug-fix
Browse files Browse the repository at this point in the history
remove debuging logging
  • Loading branch information
kmarkela authored Sep 18, 2024
2 parents d1c0826 + d43816d commit 5d91123
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 3 deletions.
Binary file modified bin/duffman_darwin_arm64
Binary file not shown.
Binary file modified bin/duffman_linux_amd64
Binary file not shown.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

const version = "v1.1.0"
const version = "v1.1.1"

var rootCmd = &cobra.Command{
Use: "DuffMan",
Expand Down
2 changes: 0 additions & 2 deletions internal/client/eout.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"bytes"
"encoding/json"

"github.com/kmarkela/duffman/internal/logger"
"github.com/kmarkela/duffman/internal/pcollection"
"github.com/kmarkela/duffman/internal/req"
)
Expand All @@ -24,7 +23,6 @@ func buildReqStr(rp pcollection.Req, env, vars []pcollection.KeyValue) string {
encoder := json.NewEncoder(&buf)
encoder.SetEscapeHTML(false)
encoder.SetIndent("", " ")
logger.Logger.Info("body", "B", r.Body)
if err := encoder.Encode(r); err != nil {
return err.Error()
}
Expand Down

0 comments on commit 5d91123

Please sign in to comment.