mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-07-30 23:24:44 +08:00
for debugging
This commit is contained in:
parent
a25a8d8822
commit
4e16a90454
@ -1,6 +1,9 @@
|
||||
package log_buffer
|
||||
|
||||
import "time"
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
type MemBuffer struct {
|
||||
buf []byte
|
||||
@ -53,3 +56,7 @@ func (mb *MemBuffer) locateByTs(lastReadTime time.Time) (pos int) {
|
||||
}
|
||||
return len(mb.buf)
|
||||
}
|
||||
|
||||
func (mb *MemBuffer) String() string {
|
||||
return fmt.Sprintf("[%v,%v] bytes:%d", mb.startTime, mb.stopTime, mb.size)
|
||||
}
|
Loading…
Reference in New Issue
Block a user