防止Sequelize在执行查询时将SQL输出到控制台?

时间:2015-03-08 14:56:52

标签: node.js sequelize.js

我有一个功能来检索用户的个人资料。

app.get('/api/user/profile', function (request, response)
{
  // Create the default error container
  var error = new Error();

  var User = db.User;
  User.find({
    where: { emailAddress: request.user.username}
  }).then(function(user)
  {
    if(!user)
    {
      error.status = 500; error.message = "ERROR_INVALID_USER"; error.code = 301;
      return next(error);
    }

    // Build the profile from the user object
    profile = {
      "firstName": user.firstName,
      "lastName": user.lastName,
      "emailAddress": user.emailAddress
    }
    response.status(200).send(profile);
  });
});

当"找到"调用函数它会在启动服务器的控制台上显示select语句。

Executing (default): SELECT `id`, `firstName`, `lastName`, `emailAddress`, `password`, `passwordRecoveryToken`, `passwordRecoveryTokenExpire`, `createdAt`, `updatedAt` FROM `Users` AS `User` WHERE `User`.`emailAddress` = 'johndoe@doe.com' LIMIT 1;

有没有办法让这个不显示?我在某个配置文件中设置的一些标志?

10 个答案:

答案 0 :(得分:236)

创建Sequelize对象时,将false传递给logging参数:

var sequelize = new Sequelize('database', 'username', 'password', {

  // disable logging; default: console.log
  logging: false

});

有关更多选项,请查看docs

答案 1 :(得分:25)

如果使用'config / config.json'文件,则在开发配置部分的本例中将config.json添加'logging':false。

  // file config/config.json
  {
      {
      "development": {
        "username": "username",
        "password": "password",
        "database": "db_name",
        "host": "127.0.0.1",
        "dialect": "mysql",
        "logging": false
      },
      "test": {
    ...
   }

答案 2 :(得分:12)

与其他答案一样,您可以设置logging:false,但我认为比完全禁用日志记录要好,您可以在应用中使用日志级别。有时您可能希望查看已执行的查询,因此最好将Sequelize配置为以详细级别或调试进行日志记录。例如(我在这里使用winston作为日志框架,但你可以使用任何其他框架):

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

仅当winston日志级别设置为debug或更低的调试级别时,才会输出SQL语句。如果警告日志级别或不记录信息,例如SQL

答案 3 :(得分:4)

这是我的答案:

简报:我使用typeorm作为ORM库。因此,要设置查询日志记录级别,我使用了以下选项,而不是直接将日志记录选项设置为false

解决方案::文件名-ormconfig.ts

{
    'type': process.env.DB_DRIVER,
    'host': process.env.DB_HOST,
    'port': process.env.DB_PORT,
    'username': process.env.DB_USER,
    'password': process.env.DB_PASS,
    'database': process.env.DB_NAME,
    'migrations': [process.env.MIGRATIONS_ENTITIES],
    'synchronize': false,
    'logging': process.env.DB_QUERY_LEVEL,
    'entities': [
        process.env.ORM_ENTITIES
    ],
    'cli': {
        'migrationsDir': 'migrations'
     }
}

然后,在环境变量中将DB_QUERY_LEVEL设置为[“ query”,“ error”]。

结果:因此,仅当查询出错时才会记录日志,否则不会记录。

引用链接: typeorm db query logging doc

希望这会有所帮助! 谢谢。

答案 4 :(得分:3)

所有这些答案都在创建时关闭了 logging

但是,如果我们需要在运行时关闭日志记录怎么办?

在运行时,我的意思是在使用sequelize函数初始化new Sequelize(..对象之后。

我偷看了github source,找到了一种关闭运行时日志记录的方法。

// Somewhere your code, turn off the logging
sequelize.options.logging = false

// Somewhere your code, turn on the logging
sequelize.options.logging = true 

答案 5 :(得分:2)

基于这个讨论,我构建了完美的config.json

{
  "development": {
    "username": "root",
    "password": null,
    "logging" : false,
    "database": "posts_db_dev",
    "host": "127.0.0.1",
    "dialect": "mysql",
    "operatorsAliases": false 
  }
}

答案 6 :(得分:0)

我正在使用Sequelize ORM 6.0.0,并在使用“ logging”:其余为false,但将我的答案发布为最新版本的ORM。

const sequelize = new Sequelize(
        process.env.databaseName,
        process.env.databaseUser,
        process.env.password,
        {
            host: process.env.databaseHost,
            dialect: process.env.dialect,
            "logging": false,
            define: {
                // Table names won't be pluralized.
                freezeTableName: true,
                // All tables won't have "createdAt" and "updatedAt" Auto fields.
                timestamps: false
            }
        }
    );

注意:我将我的机密信息存储在配置文件.env中,遵循12因子方法。

答案 7 :(得分:0)

我通过使用以下代码解决了很多问题。 问题是:-

  1. 未连接数据库
  2. 数据库连接拒绝问题
  3. 摆脱控制台中的日志(专用于此)。
const sequelize = new Sequelize("test", "root", "root", {
  host: "127.0.0.1",
  dialect: "mysql",
  port: "8889",
  connectionLimit: 10,
  socketPath: "/Applications/MAMP/tmp/mysql/mysql.sock",
  // It will disable logging
  logging: false
});

答案 8 :(得分:0)

new Sequelize({
    host: "localhost",
    database: "database_name",
    dialect: "mysql",
    username: "root",
    password: "password",
    logging: false        // for disable logs
})

答案 9 :(得分:0)

即使您打开了日志记录,您也可以通过添加 'logging: false' 作为其选项来禁用对一个查询的日志记录:

  User.findAll(
   { where: { emailAddress: request.user.username}
  }, {logging: false}
  )
  .then(function(user)....

来自https://sequelize.org/master/class/lib/model.js~Model.html#static-method-findAll的更多信息