diff --git a/internal/model/table.go b/internal/model/table.go index 2de7c32b..48d86405 100644 --- a/internal/model/table.go +++ b/internal/model/table.go @@ -3,7 +3,6 @@ package model import ( "context" "fmt" - "runtime" "sync/atomic" "time" @@ -147,8 +146,6 @@ func (t *Table) reconcile(ctx context.Context) error { t.data.Mutex.Lock() defer t.data.Mutex.Unlock() - log.Debug().Msgf("GOROUTINE %d", runtime.NumGoroutine()) - factory, ok := ctx.Value(internal.KeyFactory).(Factory) if !ok { return fmt.Errorf("expected Factory in context but got %T", ctx.Value(internal.KeyFactory))