ceph-csi/vendor/github.com/docker/spdystream/utils.go

17 lines
185 B
Go
Raw Normal View History

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