-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrors_level.go
50 lines (45 loc) · 1.08 KB
/
errors_level.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package errors
type level string
/* for logging */
const (
levelPanic level = "panic"
levelEmerg level = "emerg"
levelAlert level = "alert"
levelCrit level = "crit"
levelError level = "error"
levelWarn level = "warn"
levelNotice level = "notice"
levelInfo level = "info"
levelDebug level = "debug"
)
func (e *appError) Panic() AppError {
e.level = levelPanic
return e
}
func (e *appError) Crit() AppError {
e.level = levelCrit
return e
}
func (e *appError) Warn() AppError {
e.level = levelWarn
return e
}
func (e *appError) Info() AppError {
e.level = levelInfo
return e
}
func (e *appError) IsPanic() bool { return e.checkLevel(levelPanic) }
func (e *appError) IsCrit() bool { return e.checkLevel(levelCrit) }
func (e *appError) IsWarn() bool { return e.checkLevel(levelWarn) }
func (e *appError) IsInfo() bool { return e.checkLevel(levelInfo) }
func (e *appError) checkLevel(lv level) bool {
if e.level != `` {
return e.level == lv
}
next := AsAppError(e.next)
if next != nil {
return next.checkLevel(lv)
}
// Default level is critical
return lv == levelCrit
}