Skip to content

Commit ac8c478

Browse files
clear a stray print
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
1 parent 576f4f4 commit ac8c478

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

api/message.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package api
33
import (
44
"encoding/json"
55
"errors"
6-
"log"
76
"strconv"
87
"strings"
98
"time"
@@ -146,7 +145,6 @@ func buildWithPaging(ctx *gin.Context, paging *pagingParams, messages []*model.M
146145
func withPaging(ctx *gin.Context, f func(pagingParams *pagingParams)) {
147146
params := &pagingParams{Limit: 100, By: "id"}
148147
if err := ctx.MustBindWith(params, binding.Query); err == nil {
149-
log.Printf("Paging params: %+v", params)
150148
f(params)
151149
}
152150
}

0 commit comments

Comments
 (0)