summaryrefslogtreecommitdiff
path: root/start.go
diff options
context:
space:
mode:
Diffstat (limited to 'start.go')
-rw-r--r--start.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/start.go b/start.go
index 465f7b5..b8d20ae 100644
--- a/start.go
+++ b/start.go
@@ -11,6 +11,7 @@ import (
"time"
pb "go.wit.com/lib/protobuf/virtbuf"
+ "go.wit.com/log"
)
func isClusterStable() (string, error) {
@@ -45,6 +46,7 @@ func Start(name string) (string, error) {
// validate the droplet
if err := ValidateDroplet(d); err != nil {
+ log.Info("ValidateDroplet() failed", err)
result = "ValidateDroplet() failed droplet " + d.Hostname
return result, err
}