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...)
|
||
|
}
|
||
|
}
|