itanex / stream-assist-bot

GNU General Public License v3.0
1 stars 0 forks source link

Design winston logger for SQL explicitly #16

Open itanex opened 9 months ago

itanex commented 9 months ago

Sequelize should log to its own files as logging into the standard application logs makes them overly verbose and contain irrelevant data to the execution of the application.

var sequelize = new Sequelize('database', 'username', 'password', {
  logging: winston.debug
});