mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	tech(plugins): increase timeout
This commit is contained in:
		@@ -32,11 +32,25 @@ func New(logger string, ctx ...interface{}) Logger {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Trace(format string, v ...interface{}) {
 | 
			
		||||
	Root.Debug(fmt.Sprintf(format, v))
 | 
			
		||||
	var message string
 | 
			
		||||
	if len(v) > 0 {
 | 
			
		||||
		message = fmt.Sprintf(format, v)
 | 
			
		||||
	} else {
 | 
			
		||||
		message = format
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	Root.Debug(message)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Debug(format string, v ...interface{}) {
 | 
			
		||||
	Root.Debug(fmt.Sprintf(format, v))
 | 
			
		||||
	var message string
 | 
			
		||||
	if len(v) > 0 {
 | 
			
		||||
		message = fmt.Sprintf(format, v)
 | 
			
		||||
	} else {
 | 
			
		||||
		message = format
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	Root.Debug(message)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Debug2(message string, v ...interface{}) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user