我在Node js应用程序中使用繁琐的连接池。一切正常,但我在控制台看到不必要的日志。 如何摆脱这些日志消息。我希望只有在出现任何问题时才会看到日志。
日志:
Tedious-Connection-Pool: filling pool with 2
Tedious-Connection-Pool: creating connection: 1
Tedious-Connection-Pool: creating connection: 2
Tedious-Connection-Pool: filling pool with 2
答案 0 :(得分:2)
您需要更改传递给{
"states": [
{ "stateCode": "01", "stateName": "Johor" },
{ "stateCode": "02", "stateName": "Kedah" },
{ "stateCode": "10", "stateName": "Selangor" }
]
}
的{{1}},使其包含密钥poolConfig
另请参阅文档https://github.com/tediousjs/tedious-connection-pool中出现new ConnectionPool
的示例。