diff options
| author | Jeff Carr <[email protected]> | 2024-10-13 00:40:22 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-13 00:40:22 -0500 |
| commit | 62e9d8cfb1563ea7dbedf26a0dc593e4227cf413 (patch) | |
| tree | 69447443957681d21ffecc1b1b4a83670b542242 /main.go | |
| parent | ba61b7863168c03812578d74fbe1e4532eb8b6a5 (diff) | |
cleanup STDOUT debugging
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,10 +35,11 @@ func main() { me.names = append(me.names, s) log.Info("Making a hypervisor struct for", s) - var h HyperT + h := new(HyperT) h.Hostname = s h.Autoscan = true h.Delay = 5 * time.Second + h.lastpoll = time.Now() h.Scan = func() { h.pollHypervisor() } |
