1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

detect end of channel

This commit is contained in:
v2ray 2016-05-01 17:19:41 +02:00
parent 3df7634570
commit a538de56de

View File

@ -55,7 +55,10 @@ func (this *fileLogWriter) Log(log LogEntry) {
func (this *fileLogWriter) run() {
for {
entry := <-this.queue
entry, open := <-this.queue
if !open {
break
}
this.logger.Print(entry.String() + platform.LineSeparator())
entry.Release()
entry = nil