mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 01:50:50 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			477 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			477 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package logger
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"os"
 | |
| )
 | |
| 
 | |
| var _ Logger = StandardLogger{}
 | |
| 
 | |
| type StandardLogger struct{}
 | |
| 
 | |
| func (StandardLogger) Printf(format string, args ...interface{}) {
 | |
| 	if len(format) == 0 || format[len(format)-1] != '\n' {
 | |
| 		format += "\n"
 | |
| 	}
 | |
| 	fmt.Fprintf(os.Stderr, format, args...)
 | |
| }
 | |
| 
 | |
| func (StandardLogger) Debugf(format string, args ...interface{}) {
 | |
| 	if len(format) == 0 || format[len(format)-1] != '\n' {
 | |
| 		format += "\n"
 | |
| 	}
 | |
| 	fmt.Fprintf(os.Stderr, format, args...)
 | |
| }
 | 
