This commit is contained in:
邹宗楠
2026-07-06 15:54:48 +08:00
parent 4b6eaa1392
commit c412fd17c2
2 changed files with 2 additions and 1 deletions

View File

@@ -281,7 +281,9 @@ func (p *Print) GetPrintMessages(c *gin.Context) {
tokenInfo *model.TokenInfo
param = printModel.GetPrintMsg{}
)
globals.SugarLogger.Debugf("-----------111")
if err = c.ShouldBind(&param); err != nil {
globals.SugarLogger.Debugf("-----------111:err := %v", err)
controllers.BuildErrJson(c, err)
return
}

View File

@@ -42,7 +42,6 @@ func main() {
r.Use(middleware())
routers.Init(r)
misc.Init()
globals.SugarLogger.Debugf("-----------------------------liulei1111")
r.Run(":8999")
}