diff options
| author | Jeff Carr <[email protected]> | 2024-11-16 05:21:44 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-16 05:21:44 -0600 |
| commit | 70cc9944adfea53e1c5a841d573cac79a5b94ce9 (patch) | |
| tree | 8b980ddd002628c5c7290a94bfdaa0b5a80974e8 /start.go | |
| parent | 5ea2e5999bf19c5b0dcd594ce5c646ae2227fcec (diff) | |
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'start.go')
| -rw-r--r-- | start.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 } |
