5

I'm logging the result of some certain query and it's working fine, but I have noticed there are too much metadata are logged as well, how can I disable these metadata from being logged in?

screenshot

    const pool = mariadb.createPool({
        host: 'localhost',
        port: 3306,
        user: 'example',
        password: 'pass',
        waitForConnections: true,
        connectionLimit: 10
    });

    async function asyncFunction () {
        let conn;
        try {
            conn = await pool.getConnection();
            const queryResult = await conn.query('select * from test.sb__user where id=94');
            console.log(queryResult); // [ {val: 1}, meta: ... ]
        } catch (err) {
            throw err;
        } finally {
            if (conn) return conn.end();
        }
    }

2 Answers2

2

I used the delete keyword to remove the meta, following Tomas B's example but using Vanilla JS instead.

delete queryResult.meta;
JoeCrash
  • 532
  • 2
  • 9
0

Using lodash exclude the meta value from the queryResult array:

_.difference(queryResult, ['meta'])
Tomas B
  • 31
  • 1
  • 3