From 39e0d9d9f3282a9b45dd26dbd62cadf6ff910572 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 6 Feb 2026 15:40:25 +0000 Subject: [PATCH] Remove chatty oauth debug message about no ouath Floods my dev setup log --- background/arcgis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background/arcgis.go b/background/arcgis.go index c2a1f474..dad150a7 100644 --- a/background/arcgis.go +++ b/background/arcgis.go @@ -158,7 +158,7 @@ func refreshFieldseekerData(ctx context.Context, newOauthCh <-chan struct{}) { err := periodicallyExportFieldseeker(workerCtx, org) if err != nil { if errors.Is(err, &NoOAuthForOrg{}) { - log.Info().Int("organization_id", int(org.ID)).Msg("No oauth available for organization, exiting exporter.") + //log.Debug().Int("organization_id", int(org.ID)).Msg("No oauth available for organization, exiting exporter.") return } log.Error().Err(err).Msg("Crashed fieldseeker export goroutine")