mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 07:30:25 +00:00
18 lines
238 B
Go
18 lines
238 B
Go
|
package logger
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"sync"
|
||
|
)
|
||
|
|
||
|
type logSyncWrapper struct {
|
||
|
output *os.File
|
||
|
lock *sync.Mutex
|
||
|
}
|
||
|
|
||
|
func (l logSyncWrapper) Write(b []byte) (n int, err error) {
|
||
|
l.lock.Lock()
|
||
|
defer l.lock.Unlock()
|
||
|
return l.output.Write(b)
|
||
|
}
|