Remove unnecessary returns in tracing setup
This commit is contained in:
parent
26b3fe201b
commit
529e34d2ae
1 changed files with 0 additions and 3 deletions
|
@ -44,10 +44,7 @@ func (t *Tracing) Setup() {
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("Could not initialize %s tracing: %v", t.Backend, err)
|
log.Warnf("Could not initialize %s tracing: %v", t.Backend, err)
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsEnabled determines if tracing was successfully activated
|
// IsEnabled determines if tracing was successfully activated
|
||||||
|
|
Loading…
Reference in a new issue