diff options
Diffstat (limited to 'weed/filer_client/filer_client_accessor.go')
| -rw-r--r-- | weed/filer_client/filer_client_accessor.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/filer_client/filer_client_accessor.go b/weed/filer_client/filer_client_accessor.go index 20646d343..228e01c5c 100644 --- a/weed/filer_client/filer_client_accessor.go +++ b/weed/filer_client/filer_client_accessor.go @@ -1,7 +1,7 @@ package filer_client import ( - "github.com/seaweedfs/seaweedfs/weed/glog" + "github.com/seaweedfs/seaweedfs/weed/util/log" "github.com/seaweedfs/seaweedfs/weed/mq/topic" "github.com/seaweedfs/seaweedfs/weed/pb" "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb" @@ -20,7 +20,7 @@ func (fca *FilerClientAccessor) WithFilerClient(streamingMode bool, fn func(file func (fca *FilerClientAccessor) SaveTopicConfToFiler(t topic.Topic, conf *mq_pb.ConfigureTopicResponse) error { - glog.V(0).Infof("save conf for topic %v to filer", t) + log.V(3).Infof("save conf for topic %v to filer", t) // save the topic configuration on filer return fca.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error { @@ -30,7 +30,7 @@ func (fca *FilerClientAccessor) SaveTopicConfToFiler(t topic.Topic, conf *mq_pb. func (fca *FilerClientAccessor) ReadTopicConfFromFiler(t topic.Topic) (conf *mq_pb.ConfigureTopicResponse, err error) { - glog.V(1).Infof("load conf for topic %v from filer", t) + log.V(2).Infof("load conf for topic %v from filer", t) if err = fca.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error { conf, err = t.ReadConfFile(client) |
