Remove chatty debug logs

This commit is contained in:
Eli Ribble 2026-03-20 16:38:01 +00:00
parent 9d2b757bc7
commit 313dacd956
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

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