diff options
| author | Jeff Carr <[email protected]> | 2024-10-18 07:40:06 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-18 07:40:06 -0500 |
| commit | c9ccf688c27749dfbab31004b6258dbb759962b2 (patch) | |
| tree | d35d7dc4b621bf3a282604f6cd2fe9b331813af7 /poll.go | |
| parent | 14dadbcf3ce8d732354d2c4ef30f3374f80950f9 (diff) | |
start simple xml handling
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'poll.go')
| -rw-r--r-- | poll.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -59,12 +59,12 @@ func (h *HyperT) pollHypervisor() { // this should mean a droplet is running where the config file says it probably should be running if d.hyperPreferred == h.Hostname { - log.Log(EVENT, "new droplet", d.Hostname, "(matches config hypervisor", h.Hostname + ")") + log.Log(EVENT, "new droplet", d.Hostname, "(matches config hypervisor", h.Hostname+")") d.hname = h.Hostname continue } - log.Log(EVENT, "new droplet", d.Hostname, "on", h.Hostname, "(in config file without preferred hypervisor)") + log.Log(EVENT, "new droplet", d.Hostname, "on", h.Hostname, "(in config file without preferred hypervisor)") } d.hname = h.Hostname } |
