Remove 'timeSince' debug logging

This commit is contained in:
Eli Ribble 2025-11-12 21:28:07 +00:00
parent 390e5120e1
commit 567c1b5064
No known key found for this signature in database

View file

@ -409,7 +409,6 @@ func timeSince(t *time.Time) string {
diff := now.Sub(*t) diff := now.Sub(*t)
hours := diff.Hours() hours := diff.Hours()
slog.Info("time since", slog.String("t", t.String()), slog.Float64("hours", hours))
if hours < 1 { if hours < 1 {
minutes := diff.Minutes() minutes := diff.Minutes()
return fmt.Sprintf("%d minutes ago", int(minutes)) return fmt.Sprintf("%d minutes ago", int(minutes))