From 8491785c9da790eaf716a891063dcdd4c6c55d35 Mon Sep 17 00:00:00 2001 From: JustSong Date: Sun, 7 Jan 2024 17:13:24 +0800 Subject: [PATCH] chore: remove useless logging --- model/log.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/model/log.go b/model/log.go index 79a7b4fa..307928c4 100644 --- a/model/log.go +++ b/model/log.go @@ -218,7 +218,5 @@ func SearchLogsByDayAndModel(userId, start, end int) (LogStatistics []*LogStatis ORDER BY day, model_name `, userId, start, end).Scan(&LogStatistics).Error - fmt.Println(userId, start, end) - return LogStatistics, err }