forked from cerc-io/plugeth
logger/glog: clean up flag getters
This commit is contained in:
parent
a411fe7e6e
commit
e287b56b69
@ -138,25 +138,28 @@ func SetV(v int) {
|
||||
logging.verbosity.set(Level(v))
|
||||
}
|
||||
|
||||
// SetVmodule sets the global verbosity patterns.
|
||||
func SetVmodule(pat string) error {
|
||||
return logging.vmodule.Set(pat)
|
||||
}
|
||||
|
||||
// SetToStderr sets the global output style
|
||||
func SetToStderr(toStderr bool) {
|
||||
logging.mu.Lock()
|
||||
logging.toStderr = toStderr
|
||||
logging.mu.Unlock()
|
||||
}
|
||||
|
||||
// GetTraceLocation returns the global TraceLocation object
|
||||
// GetTraceLocation returns the global TraceLocation flag.
|
||||
func GetTraceLocation() *TraceLocation {
|
||||
return &logging.traceLocation
|
||||
}
|
||||
|
||||
// GetVModule returns the global verbosity pattern flag.
|
||||
func GetVModule() *moduleSpec {
|
||||
return &logging.vmodule
|
||||
}
|
||||
|
||||
// GetVerbosity returns the global verbosity level flag.
|
||||
func GetVerbosity() *Level {
|
||||
return &logging.verbosity
|
||||
}
|
||||
|
||||
// get returns the value of the severity.
|
||||
func (s *severity) get() severity {
|
||||
return severity(atomic.LoadInt32((*int32)(s)))
|
||||
@ -453,8 +456,7 @@ func init() {
|
||||
|
||||
// Default stderrThreshold is ERROR.
|
||||
logging.stderrThreshold = errorLog
|
||||
|
||||
logging.setVState(0, nil, false)
|
||||
logging.setVState(3, nil, false)
|
||||
go logging.flushDaemon()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user