日志
开启日志
你只需在连接选项中设置logging:true即可启用所有查询和错误的记录:
{
name: "mysql",
type: "mysql",
host: "localhost",
port: 3306,
username: "test",
password: "test",
database: "test",
...
logging: true
}
日志选项
可以在连接选项中启用不同类型的日志记录:
{
host: "localhost",
...
logging: ["query", "error"]
}
如果要启用失败查询的日志记录,则只添加error:
{
host: "localhost",
...
logging: ["error"]
}
还可以使用其他选项:
query- 记录所有查询。error- 记录所有失败的查询和错误。schema- 记录架构构建过程。warn- 记录内部 orm 警告。info- 记录内部 orm 信息性消息。log- 记录内部 orm 日志消息。
你可以根据需要指定任意数量的选项。
如果要启用所有日志记录,只需指定logging:“all”:
{
host: "localhost",
...
logging: "all"
}