mirror of
				https://github.com/go-micro/go-micro.git
				synced 2025-10-30 23:27:41 +02:00 
			
		
		
		
	add warn log level
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
		| @@ -14,6 +14,7 @@ type Level int | ||||
| const ( | ||||
| 	LevelFatal Level = iota | ||||
| 	LevelInfo | ||||
| 	LevelWarn | ||||
| 	LevelDebug | ||||
| 	LevelTrace | ||||
| ) | ||||
| @@ -36,6 +37,8 @@ func init() { | ||||
| 		level = LevelTrace | ||||
| 	case "fatal": | ||||
| 		level = LevelFatal | ||||
| 	case "warn": | ||||
| 		level = LevelWarn | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -95,6 +98,16 @@ func Infof(format string, v ...interface{}) { | ||||
| 	WithLevelf(LevelInfo, format, v...) | ||||
| } | ||||
|  | ||||
| // Warn provides warn level logging | ||||
| func Warn(v ...interface{}) { | ||||
| 	WithLevel(LevelWarn, v...) | ||||
| } | ||||
|  | ||||
| // Warnf provides warn level logging | ||||
| func Warnf(format string, v ...interface{}) { | ||||
| 	WithLevelf(LevelWarn, format, v...) | ||||
| } | ||||
|  | ||||
| // Fatal logs with Log and then exits with os.Exit(1) | ||||
| func Fatal(v ...interface{}) { | ||||
| 	WithLevel(LevelFatal, v...) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user