Modules: Add patched goavro dependency for extensions (#21027)

This commit is contained in:
Emil Tullstedt
2019-12-11 14:44:29 +01:00
committed by GitHub
parent 32c9d558f9
commit fe8b533497
50 changed files with 8198 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
// +build goavro_debug
package goavro
import (
"fmt"
"os"
)
// debug formats and prints arguments to stderr for development builds
func debug(f string, a ...interface{}) {
os.Stderr.Write([]byte("goavro: " + fmt.Sprintf(f, a...)))
}