Removed logging line

pull/1663/head
Aidan 11 months ago
parent 8f3d0d0c57
commit bcde3cb240

@ -114,10 +114,8 @@ func UptimeWithContext(ctx context.Context) (uint64, error) {
} }
} }
total_time := (days * 24 * 60) + (hours * 60) + mins
// Calculate total time in minutes // Calculate total time in minutes
log.Println("days / hrs / mins ", days, hours, mins, total_time) total_time := (days * 24 * 60) + (hours * 60) + mins
return total_time, nil return total_time, nil
} }

Loading…
Cancel
Save