Skip to content

Commit

Permalink
adjust log level
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislusf committed Mar 22, 2024
1 parent 5c0fcae commit 26e24db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weed/util/log_buffer/log_buffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (logBuffer *LogBuffer) loopInterval() {
toFlush := logBuffer.copyToFlush()
logBuffer.Unlock()
if toFlush != nil {
glog.V(0).Infof("%s flush [%v, %v] size %d", logBuffer.name, toFlush.startTime, toFlush.stopTime, len(toFlush.data.Bytes()))
glog.V(4).Infof("%s flush [%v, %v] size %d", logBuffer.name, toFlush.startTime, toFlush.stopTime, len(toFlush.data.Bytes()))
logBuffer.flushChan <- toFlush
} else {
// glog.V(0).Infof("%s no flush", m.name)
Expand Down

0 comments on commit 26e24db

Please sign in to comment.