diff --git a/unmarshall.go b/unmarshall.go index b3612a1..8107605 100644 --- a/unmarshall.go +++ b/unmarshall.go @@ -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) }