mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add synchronization for calls to the buffer used for logging
This commit is contained in:
parent
a0bf7c7ed0
commit
e14a4f9be7
1 changed files with 28 additions and 2 deletions
|
@ -15,10 +15,36 @@ import (
|
|||
|
||||
const logBufSize = 100 * 1 << 20 // initial size of the log buffer: 100 MB
|
||||
|
||||
type syncedBuffer struct {
|
||||
mutex sync.Mutex
|
||||
|
||||
*bytes.Buffer
|
||||
}
|
||||
|
||||
func (b *syncedBuffer) Write(p []byte) (int, error) {
|
||||
b.mutex.Lock()
|
||||
n, err := b.Buffer.Write(p)
|
||||
b.mutex.Unlock()
|
||||
return n, err
|
||||
}
|
||||
|
||||
func (b *syncedBuffer) Bytes() []byte {
|
||||
b.mutex.Lock()
|
||||
p := b.Buffer.Bytes()
|
||||
b.mutex.Unlock()
|
||||
return p
|
||||
}
|
||||
|
||||
func (b *syncedBuffer) Reset() {
|
||||
b.mutex.Lock()
|
||||
b.Buffer.Reset()
|
||||
b.mutex.Unlock()
|
||||
}
|
||||
|
||||
var (
|
||||
logFileName string // the log file set in the ginkgo flags
|
||||
logBufOnce sync.Once
|
||||
logBuf *bytes.Buffer
|
||||
logBuf *syncedBuffer
|
||||
)
|
||||
|
||||
// read the logfile command line flag
|
||||
|
@ -32,7 +58,7 @@ var _ = BeforeEach(func() {
|
|||
|
||||
if Debug() {
|
||||
logBufOnce.Do(func() {
|
||||
logBuf = bytes.NewBuffer(make([]byte, 0, logBufSize))
|
||||
logBuf = &syncedBuffer{Buffer: bytes.NewBuffer(make([]byte, 0, logBufSize))}
|
||||
})
|
||||
utils.DefaultLogger.SetLogLevel(utils.LogLevelDebug)
|
||||
log.SetOutput(logBuf)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue