mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			293 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			293 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package util
 | |
| 
 | |
| import (
 | |
| 	"github.com/rs/zerolog/log"
 | |
| 	"tailscale.com/types/logger"
 | |
| )
 | |
| 
 | |
| func LogErr(err error, msg string) {
 | |
| 	log.Error().Caller().Err(err).Msg(msg)
 | |
| }
 | |
| 
 | |
| func TSLogfWrapper() logger.Logf {
 | |
| 	return func(format string, args ...any) {
 | |
| 		log.Debug().Caller().Msgf(format, args...)
 | |
| 	}
 | |
| }
 |