diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-08-30 20:12:04 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-08-30 20:12:04 -0700 |
| commit | a41588279a10e4326c227471e95abe960f5ce688 (patch) | |
| tree | 7f13a172cd56759956d08b3ee9837c19c2ea08d6 /weed/util/chunk_cache | |
| parent | 56244fb9a13c75616aa8a9232c62d1b896906e98 (diff) | |
| download | seaweedfs-a41588279a10e4326c227471e95abe960f5ce688.tar.xz seaweedfs-a41588279a10e4326c227471e95abe960f5ce688.zip | |
change log level 5 to 4
Diffstat (limited to 'weed/util/chunk_cache')
| -rw-r--r-- | weed/util/chunk_cache/chunk_cache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/util/chunk_cache/chunk_cache.go b/weed/util/chunk_cache/chunk_cache.go index a1a054215..2b0c635a1 100644 --- a/weed/util/chunk_cache/chunk_cache.go +++ b/weed/util/chunk_cache/chunk_cache.go @@ -94,7 +94,7 @@ func (c *TieredChunkCache) SetChunk(fileId string, data []byte) { c.Lock() defer c.Unlock() - glog.V(5).Infof("SetChunk %s size %d\n", fileId, len(data)) + glog.V(4).Infof("SetChunk %s size %d\n", fileId, len(data)) c.doSetChunk(fileId, data) } |
