Add more logging

This commit is contained in:
Juan Font 2022-11-26 00:01:51 +00:00
parent 347d4d0ca5
commit 20d599ae34
1 changed files with 4 additions and 0 deletions

View File

@ -223,6 +223,10 @@ func (h *Headscale) handlePrimarySubnetFailover() error {
if !route.IsPrimary {
_, err := h.getPrimaryRoute(netip.Prefix(route.Prefix))
if h.isUniquePrefix(route) || errors.Is(err, gorm.ErrRecordNotFound) {
log.Info().
Str("prefix", netip.Prefix(route.Prefix).String()).
Str("machine", route.Machine.GivenName).
Msg("Setting primary route")
routes[pos].IsPrimary = true
err := h.db.Save(&routes[pos]).Error
if err != nil {