diff options
Diffstat (limited to 'weed/stats/disk.go')
| -rw-r--r-- | weed/stats/disk.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/stats/disk.go b/weed/stats/disk.go index a8f906213..4c0512f80 100644 --- a/weed/stats/disk.go +++ b/weed/stats/disk.go @@ -1,7 +1,7 @@ package stats import ( - "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/util/log" "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb" ) @@ -9,7 +9,7 @@ func NewDiskStatus(path string) (disk *volume_server_pb.DiskStatus) { disk = &volume_server_pb.DiskStatus{Dir: path} fillInDiskStatus(disk) if disk.PercentUsed > 95 { - glog.V(0).Infof("disk status: %v", disk) + log.Infof("disk status: %v", disk) } return } |
