summaryrefslogtreecommitdiff
path: root/start.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-16 05:21:44 -0600
committerJeff Carr <[email protected]>2024-11-16 05:21:44 -0600
commit70cc9944adfea53e1c5a841d573cac79a5b94ce9 (patch)
tree8b980ddd002628c5c7290a94bfdaa0b5a80974e8 /start.go
parent5ea2e5999bf19c5b0dcd594ce5c646ae2227fcec (diff)
create and start work againv0.2.16v0.2.15v0.2.14
Signed-off-by: Jeff Carr <[email protected]>
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
}