diff --git a/platform/arcgis.go b/platform/arcgis.go index 8b9851dd..9b7b87f4 100644 --- a/platform/arcgis.go +++ b/platform/arcgis.go @@ -533,7 +533,7 @@ func periodicallyExportFieldseeker(ctx context.Context, org *models.Organization return fmt.Errorf("Failed to get oauth for org: %w", err) } if oa == nil { - log.Debug().Int32("org.id", org.ID).Msg("No oauth for org") + //log.Debug().Int32("org.id", org.ID).Msg("No oauth for org") continue } fssync, err := newFieldSeeker(ctx, oa) diff --git a/platform/notification.go b/platform/notification.go index 3c61d3b7..0e367c17 100644 --- a/platform/notification.go +++ b/platform/notification.go @@ -124,7 +124,7 @@ func NotificationCountsForUser(ctx context.Context, u User) (*UserNotificationCo if err != nil { return nil, fmt.Errorf("Failed to get review notification count: %w", err) } - log.Debug().Int64("reports", count_reports).Int64("home", count_home).Int64("review", count_review).Int("user", u.ID).Msg("calculated notification counts") + //log.Debug().Int64("reports", count_reports).Int64("home", count_home).Int64("review", count_review).Int("user", u.ID).Msg("calculated notification counts") return &UserNotificationCounts{ Communications: uint(count_reports), Home: uint(count_home),