containerd/vendor/github.com/docker/spdystream/utils.go
Lantao Liu 53a8cdf14f Vendor kubernetes streaming server
Signed-off-by: Lantao Liu <lantaol@google.com>
2017-08-07 19:05:16 +00:00

17 lines
185 B
Go

package spdystream
import (
"log"
"os"
)
var (
DEBUG = os.Getenv("DEBUG")
)
func debugMessage(fmt string, args ...interface{}) {
if DEBUG != "" {
log.Printf(fmt, args...)
}
}