Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在beego的orm中得到finally sql字符串。
但是我找不到可以获取sql字符串的接口。
我想为数据库操作做一个日志记录。
我想找到其他不需要打开orm.Debug的方法。
orm.Debug = false
我想你想使用orm.Debug模式:
orm.Debug
设置orm.Debug为 true 将打印出 SQL 查询 它可能会导致性能问题。不建议在生产环境中使用。 ....默认 打印到os.Stderr。 你可以把它改成你自己的io.Writer
设置orm.Debug为 true 将打印出 SQL 查询
它可能会导致性能问题。不建议在生产环境中使用。 ....默认 打印到os.Stderr。
os.Stderr
你可以把它改成你自己的io.Writer
io.Writer
更多信息