forked from mirror/logrus
add GetLevel support
Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
parent
f92b7950b3
commit
c64b18f688
|
@ -30,6 +30,11 @@ func SetLevel(level Level) {
|
|||
std.Level = level
|
||||
}
|
||||
|
||||
// GetLevel returns the standard logger level.
|
||||
func GetLevel() Level {
|
||||
return std.Level
|
||||
}
|
||||
|
||||
// AddHook adds a hook to the standard logger hooks.
|
||||
func AddHook(hook Hook) {
|
||||
std.mu.Lock()
|
||||
|
|
Loading…
Reference in New Issue