Skip to content

Commit

Permalink
Remove noisy printf which was meant for debug (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
rytswd authored Nov 10, 2023
1 parent 2b490a4 commit 78b16d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unmarshall.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ func handleInterfaces[I any](input interface{}) ([]I, error) {
var errs []error
inputs, ok := input.([]interface{})
if !ok {
fmt.Printf(" data\n %+v\n", input)
// Only used for debugging
// fmt.Printf(" data\n %+v\n", input)
return handleInput[I](input)
}

Expand Down

0 comments on commit 78b16d8

Please sign in to comment.