mirror of https://github.com/status-im/op-geth.git
logger/glog: fix TraceLocation.Set("")
This commit is contained in:
parent
5728dd381d
commit
a411fe7e6e
|
@ -407,9 +407,13 @@ var errTraceSyntax = errors.New("syntax error: expect file.go:234")
|
||||||
func (t *TraceLocation) Set(value string) error {
|
func (t *TraceLocation) Set(value string) error {
|
||||||
if value == "" {
|
if value == "" {
|
||||||
// Unset.
|
// Unset.
|
||||||
|
logging.mu.Lock()
|
||||||
t.line = 0
|
t.line = 0
|
||||||
t.file = ""
|
t.file = ""
|
||||||
|
logging.mu.Unlock()
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
fields := strings.Split(value, ":")
|
fields := strings.Split(value, ":")
|
||||||
if len(fields) != 2 {
|
if len(fields) != 2 {
|
||||||
return errTraceSyntax
|
return errTraceSyntax
|
||||||
|
|
Loading…
Reference in New Issue