mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 08:32:25 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			477 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 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...)
 | 
						|
}
 |