1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-02 20:15:24 +00:00

remove test log

This commit is contained in:
Darien Raymond 2016-11-22 00:54:40 +01:00
parent e0116d3957
commit 8dbb45bf06
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -3,8 +3,6 @@ package io
import ( import (
"io" "io"
"sync" "sync"
"fmt"
"v2ray.com/core/common/alloc" "v2ray.com/core/common/alloc"
) )
@ -53,8 +51,6 @@ func (this *BufferedWriter) Write(b []byte) (int, error) {
return 0, io.ErrClosedPipe return 0, io.ErrClosedPipe
} }
fmt.Printf("BufferedWriter writing: %v\n", b)
if !this.cached { if !this.cached {
return this.writer.Write(b) return this.writer.Write(b)
} }
@ -62,7 +58,6 @@ func (this *BufferedWriter) Write(b []byte) (int, error) {
if this.buffer.IsFull() { if this.buffer.IsFull() {
this.FlushWithoutLock() this.FlushWithoutLock()
} }
fmt.Printf("BufferedWriter content: %v\n", this.buffer.Value)
return nBytes, nil return nBytes, nil
} }
@ -78,11 +73,9 @@ func (this *BufferedWriter) Flush() error {
} }
func (this *BufferedWriter) FlushWithoutLock() error { func (this *BufferedWriter) FlushWithoutLock() error {
fmt.Println("BufferedWriter flushing")
defer this.buffer.Clear() defer this.buffer.Clear()
for !this.buffer.IsEmpty() { for !this.buffer.IsEmpty() {
nBytes, err := this.writer.Write(this.buffer.Value) nBytes, err := this.writer.Write(this.buffer.Value)
fmt.Printf("BufferedWriting flushed %d bytes.\n", nBytes)
if err != nil { if err != nil {
return err return err
} }