This commit is contained in:
邹宗楠
2022-12-16 14:46:13 +08:00
parent 0c3b2239c1
commit 2ccef476ea
2 changed files with 1 additions and 4 deletions

View File

@@ -53,9 +53,6 @@ func GetPrintMsgs(db *DaoDB, printNo string, statuss []int, beginAt, endAt time.
sql += " ORDER BY a.created_at LIMIT ? OFFSET ?"
sqlParams = append(sqlParams, pageSize, offset)
err = GetRows(db, &prints, sql, sqlParams)
globals.SugarLogger.Debugf("======sql := %s", sql)
globals.SugarLogger.Debugf("======sql := %s", utils.Format4Output(sqlParams, false))
globals.SugarLogger.Debugf("======prints := %s", utils.Format4Output(prints, false))
return prints, err
}