mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-07-22 07:52:54 +00:00
09c802e501
Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
17 lines
185 B
Go
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...)
|
|
}
|
|
}
|