20 lines
		
	
	
		
			434 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			434 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package grlogs
 | 
						|
 | 
						|
import (
 | 
						|
	_ "golib.gaore.com/GaoreGo/grlogs/logs/es"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
func TestGetLogger(t *testing.T) {
 | 
						|
	l := Get("nds", 128).SetAdapter(LevelAll, AdapterElasticSearch)
 | 
						|
	l.Debug("我正在调试")
 | 
						|
	l.Critical("出错了")
 | 
						|
	Get("nds").Warning("hadoee %s", time.Now().Format(time.RFC1123))
 | 
						|
 | 
						|
	Get("wifi").SetAdapter(LevelAll, AdapterElasticSearch)
 | 
						|
	for i := 0; i < 10; i++ {
 | 
						|
		Get("wifi").Error("neoweiwoewe")
 | 
						|
	}
 | 
						|
}
 |