tidy: remove dev logs

This commit is contained in:
Mohamed Sohail 2022-06-16 12:22:55 +03:00
parent fe0e102a61
commit 32f744ce24
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
1 changed files with 0 additions and 5 deletions

View File

@ -9,7 +9,6 @@ import (
"github.com/georgysavva/scany/pgxscan"
"github.com/jackc/pgx/v4"
"github.com/labstack/echo/v4"
"github.com/rs/zerolog/log"
)
type userTransactionRes struct {
@ -36,8 +35,6 @@ func handleLatestTransactions(c echo.Context) error {
err error
)
log.Info().Msgf("%v", pg)
if pg.FirstPage {
rows, err = api.db.Query(context.Background(), api.q["account-latest-transactions"], phone, pg.PerPage)
if err != nil {
@ -74,8 +71,6 @@ func handleLatestTransactionsByToken(c echo.Context) error {
err error
)
log.Info().Msgf("%v", pg)
if pg.FirstPage {
rows, err = api.db.Query(context.Background(), api.q["account-latest-transactions-by-token"], phone, token, pg.PerPage)
if err != nil {