fix(logx): need to wait for the first caller to complete the execution. (#2213)

master
chen quan 2 years ago committed by GitHub
parent 3f3c811e08
commit 4fad067a0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,7 @@ import (
"os"
"path"
"runtime/debug"
"sync"
"sync/atomic"
"time"
@ -23,7 +24,7 @@ var (
disableStat uint32
options logOptions
writer = new(atomicWriter)
setupOnce uint32
setupOnce sync.Once
)
type (
@ -206,13 +207,11 @@ func SetWriter(w Writer) {
// SetUp sets up the logx. If already set up, just return nil.
// we allow SetUp to be called multiple times, because for example
// we need to allow different service frameworks to initialize logx respectively.
func SetUp(c LogConf) error {
func SetUp(c LogConf) (err error) {
// Just ignore the subsequent SetUp calls.
// Because multiple services in one process might call SetUp respectively.
if !atomic.CompareAndSwapUint32(&setupOnce, 0, 1) {
return nil
}
// Need to wait for the first caller to complete the execution.
setupOnce.Do(func() {
setupLogLevel(c)
if len(c.TimeFormat) > 0 {
@ -228,13 +227,15 @@ func SetUp(c LogConf) error {
switch c.Mode {
case fileMode:
return setupWithFiles(c)
err = setupWithFiles(c)
case volumeMode:
return setupWithVolume(c)
err = setupWithVolume(c)
default:
setupWithConsole()
return nil
}
})
return
}
// Severe writes v into severe log.

Loading…
Cancel
Save