refactor(database): 替换内部日志包为自定义日志包

- 将 gdb_model_delete.go 中的 intlog 包替换为 git.magicany.cc/black1552/gin-base/database/intlog
- 移除 github.com/gogf/gf/v2/internal/intlog 的导入
- 添加 git.magicany.cc/black1552/gin-base/database/intlog 的导入
main
maguodong 2026-04-08 09:55:14 +08:00
parent ab2f85b8ed
commit e3d0275d3a
1 changed files with 1 additions and 1 deletions

View File

@ -9,9 +9,9 @@ package database
import ( import (
"database/sql" "database/sql"
"git.magicany.cc/black1552/gin-base/database/intlog"
"github.com/gogf/gf/v2/errors/gcode" "github.com/gogf/gf/v2/errors/gcode"
"github.com/gogf/gf/v2/errors/gerror" "github.com/gogf/gf/v2/errors/gerror"
"github.com/gogf/gf/v2/internal/intlog"
"github.com/gogf/gf/v2/text/gstr" "github.com/gogf/gf/v2/text/gstr"
) )