mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +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...)))
 | 
						|
}
 |