From 3c98f1a119104f91b5c3ce7f3778e1b1a9a72717 Mon Sep 17 00:00:00 2001 From: "chris.lu@gmail.com" Date: Tue, 27 Dec 2011 01:40:16 +0000 Subject: [PATCH] better log messages git-svn-id: https://weed-fs.googlecode.com/svn/trunk@28 282b0af5-e82d-9cf1-ede4-77906d7719d0 --- weed-fs/src/cmd/weedc.go | 2 +- weed-fs/src/pkg/storage/store.go | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/weed-fs/src/cmd/weedc.go b/weed-fs/src/cmd/weedc.go index 3b37cebe8..9336c1775 100644 --- a/weed-fs/src/cmd/weedc.go +++ b/weed-fs/src/cmd/weedc.go @@ -141,7 +141,7 @@ func main() { }() log.Println("store joined at", *metaServer) - log.Println("Start storage service at http://127.0.0.1:" + strconv.Itoa(*port)) + log.Println("Start storage service at http://127.0.0.1:" + strconv.Itoa(*port), "public url", *publicUrl) e := http.ListenAndServe(":"+strconv.Itoa(*port), nil) if e != nil { log.Fatalf("Fail to start:", e.String()) diff --git a/weed-fs/src/pkg/storage/store.go b/weed-fs/src/pkg/storage/store.go index 63e714a16..900c74bf1 100644 --- a/weed-fs/src/pkg/storage/store.go +++ b/weed-fs/src/pkg/storage/store.go @@ -51,7 +51,7 @@ func NewStore(port int, publicUrl, dirname string, volumeListString string) (s * } } } - log.Println("Store started on dir:", dirname, "with", len(s.volumes), "existing volumes") + log.Println("Store started on dir:", dirname, "with", len(s.volumes), "volumes") return } @@ -76,7 +76,6 @@ func (s *Store) Join(mserver string) { values.Add("port", strconv.Itoa(s.Port)) values.Add("publicUrl", s.PublicUrl) values.Add("volumes", string(bytes)) - log.Println("Exiting volumes", string(bytes)) util.Post("http://"+mserver+"/dir/join", values) } func (s *Store) Close() {