vendor: cadvisor v0.38.4
This commit is contained in:
14
vendor/github.com/karrick/godirwalk/debug_development.go
generated
vendored
Normal file
14
vendor/github.com/karrick/godirwalk/debug_development.go
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
// +build godirwalk_debug
|
||||
|
||||
package godirwalk
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
// debug formats and prints arguments to stderr for development builds
|
||||
func debug(f string, a ...interface{}) {
|
||||
// fmt.Fprintf(os.Stderr, f, a...)
|
||||
os.Stderr.Write([]byte("godirwalk: " + fmt.Sprintf(f, a...)))
|
||||
}
|
Reference in New Issue
Block a user