Remove chatty oauth debug message about no ouath

Floods my dev setup log
This commit is contained in:
Eli Ribble 2026-02-06 15:40:25 +00:00
parent 57191fa222
commit 39e0d9d9f3
No known key found for this signature in database

View file

@ -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")