summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-04-23 02:41:05 -0500
committerJeff Carr <[email protected]>2025-04-23 02:43:18 -0500
commite6fb7352ae3b5e492880a301a2aff5f728302c09 (patch)
tree1107f5de2980d0b258d7cd0ef58b20677d1391cb /config.go
parentc9ef4f0b82d79a7fa308f85877a58bc8b435e891 (diff)
Diffstat (limited to 'config.go')
-rw-r--r--config.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/config.go b/config.go
index 4758b8e..4d6c4c6 100644
--- a/config.go
+++ b/config.go
@@ -99,7 +99,7 @@ func (c *OldCluster) ConfigLoad() error {
return err
}
} else {
- fmt.Println("ERROR HERE IN Hypervisors")
+ log.Warn("ERROR HERE IN Hypervisors")
return err
}
@@ -108,8 +108,11 @@ func (c *OldCluster) ConfigLoad() error {
// does it not stay allocated after this function ends?
c.e = new(Events)
}
+
if err := c.e.loadEvents(); err != nil {
- return err
+ // ignore events.pb since these should be sent elsewhere
+ log.Warn("Events failed to load, ignoring:", err)
+ return nil
}
return nil
}