mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
d300da19b7
Signed-off-by: Madhu Rajanna <madhupr007@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...)
|
|
}
|
|
}
|