···9494 if !glog.V(v.level) {
9595 return
9696 }
9797+ // I want a compile time assertion for this... but short of that let's be REALLY ANNOYING
9898+ if len(args)%2 != 0 {
9999+ for range 6 {
100100+ fmt.Println("!!!!!!!!!!!!!!!! FOLLOWING LOG LINE HAS AN ODD NUMBER OF ARGUMENTS !!!!!!!!!!!!!!!!")
101101+ }
102102+ }
97103 meta, _ := ctx.Value(clogContextKey).(metadata)
98104 hasCaller := false
99105
···11+package mediatesting
22+33+// This exists entirely to give a hardcoded list of LDFLAGS to the testing binary.
44+// idk. There's probably a better way.
55+66+// #cgo LDFLAGS: -L ../../../build/subprojects/ffmpeg -L ../../../build/subprojects/c2pa_go -lavcodec -lavfilter -lavformat -lavutil -lm -lpostproc -lswresample -lswscale -lz
77+import "C"