mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 02:33:21 -05:00 
			
		
		
		
	* update docs * plugins: use plugin specific logging Hooking up pkg/log also changed NewWithPlugin to just take a string instead of a plugin.Handler as that is more flexible and for instance the Root "plugin" doesn't implement it fully. Same logging from the reload plugin: .:1043 2018/04/22 08:56:37 [INFO] CoreDNS-1.1.1 2018/04/22 08:56:37 [INFO] linux/amd64, go1.10.1, CoreDNS-1.1.1 linux/amd64, go1.10.1, 2018/04/22 08:56:37 [INFO] plugin/reload: Running configuration MD5 = ec4c9c55cd19759ea1c46b8c45742b06 2018/04/22 08:56:54 [INFO] Reloading 2018/04/22 08:56:54 [INFO] plugin/reload: Running configuration MD5 = 9e2bfdd85bdc9cceb740ba9c80f34c1a 2018/04/22 08:56:54 [INFO] Reloading complete * update docs * better doc
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package log
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	golog "log"
 | 
						|
)
 | 
						|
 | 
						|
// P is a logger that includes the plugin doing the logging.
 | 
						|
type P struct {
 | 
						|
	plugin string
 | 
						|
}
 | 
						|
 | 
						|
// NewWithPlugin returns a logger that includes "plugin/name: " in the log message.
 | 
						|
// I.e [INFO] plugin/<name>: message.
 | 
						|
func NewWithPlugin(name string) P { return P{name} }
 | 
						|
 | 
						|
func (p P) logf(level, format string, v ...interface{}) {
 | 
						|
	s := level + pFormat(p.plugin) + fmt.Sprintf(format, v...)
 | 
						|
	golog.Print(s)
 | 
						|
}
 | 
						|
 | 
						|
func (p P) log(level string, v ...interface{}) {
 | 
						|
	s := level + pFormat(p.plugin) + fmt.Sprint(v...)
 | 
						|
	golog.Print(s)
 | 
						|
}
 | 
						|
 | 
						|
// Debug logs as log.Debug.
 | 
						|
func (p P) Debug(v ...interface{}) {
 | 
						|
	if !D {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	p.log(debug, v...)
 | 
						|
}
 | 
						|
 | 
						|
// Debugf logs as log.Debugf.
 | 
						|
func (p P) Debugf(format string, v ...interface{}) {
 | 
						|
	if !D {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	p.logf(debug, format, v...)
 | 
						|
}
 | 
						|
 | 
						|
// Info logs as log.Info.
 | 
						|
func (p P) Info(v ...interface{}) { p.log(info, v...) }
 | 
						|
 | 
						|
// Infof logs as log.Infof.
 | 
						|
func (p P) Infof(format string, v ...interface{}) { p.logf(info, format, v...) }
 | 
						|
 | 
						|
// Warning logs as log.Warning.
 | 
						|
func (p P) Warning(v ...interface{}) { p.log(warning, v...) }
 | 
						|
 | 
						|
// Warningf logs as log.Warningf.
 | 
						|
func (p P) Warningf(format string, v ...interface{}) { p.logf(warning, format, v...) }
 | 
						|
 | 
						|
// Error logs as log.Error.
 | 
						|
func (p P) Error(v ...interface{}) { p.log(err, v...) }
 | 
						|
 | 
						|
// Errorf logs as log.Errorf.
 | 
						|
func (p P) Errorf(format string, v ...interface{}) { p.logf(err, format, v...) }
 | 
						|
 | 
						|
func pFormat(s string) string { return "plugin/" + s + ": " }
 |