diff options
Diffstat (limited to 'weed/topology/cluster_commands.go')
| -rw-r--r-- | weed/topology/cluster_commands.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/topology/cluster_commands.go b/weed/topology/cluster_commands.go index 152691ccb..51c89f285 100644 --- a/weed/topology/cluster_commands.go +++ b/weed/topology/cluster_commands.go @@ -2,7 +2,7 @@ package topology import ( "github.com/chrislusf/raft" - "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/util/log" "github.com/chrislusf/seaweedfs/weed/storage/needle" ) @@ -25,7 +25,7 @@ func (c *MaxVolumeIdCommand) Apply(server raft.Server) (interface{}, error) { before := topo.GetMaxVolumeId() topo.UpAdjustMaxVolumeId(c.MaxVolumeId) - glog.V(1).Infoln("max volume id", before, "==>", topo.GetMaxVolumeId()) + log.Debug("max volume id", before, "==>", topo.GetMaxVolumeId()) return nil, nil } |
