diff --git a/core/service.go b/core/service.go index 09b741754..8f0e3197d 100644 --- a/core/service.go +++ b/core/service.go @@ -13,7 +13,6 @@ import ( "syscall" "github.com/coreos/go-etcd/etcd" - "github.com/davecgh/go-spew/spew" "tux21b.org/v1/gocql/uuid" ) @@ -36,7 +35,6 @@ type Service struct { } func NewService() *Service { - log.Println(spew.Sdump("NewService")) service := new(Service) service.init_id() service.Etcd = etcd.NewClient(nil) @@ -50,6 +48,7 @@ func NewService() *Service { service.version = "0.0.9" service.name = "Cruncher" service.PrepareLogging() + fmt.Printf("Pilosa %s\n", service.version) return service } diff --git a/cruncher/cruncher.go b/cruncher/cruncher.go index 622931021..0ccc3f756 100644 --- a/cruncher/cruncher.go +++ b/cruncher/cruncher.go @@ -5,8 +5,6 @@ import ( "pilosa/dispatch" "pilosa/executor" "pilosa/transport" - - "github.com/davecgh/go-spew/spew" ) type Cruncher struct { @@ -16,7 +14,6 @@ type Cruncher struct { } func (cruncher *Cruncher) Run() { - spew.Dump("Cruncher.Run") // go cruncher.Cleanup() cruncher.Service.Run() }